Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GitWrapper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Georg Seibt
GitWrapper
Commits
8dcab9bb
Commit
8dcab9bb
authored
9 years ago
by
Georg Seibt
Browse files
Options
Downloads
Patches
Plain Diff
doc
parent
51c6aa86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java
+13
-0
13 additions, 0 deletions
src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java
with
13 additions
and
0 deletions
src/de/uni_passau/fim/seibt/gitwrapper/repo/Repository.java
+
13
−
0
View file @
8dcab9bb
...
...
@@ -2,6 +2,9 @@ package de.uni_passau.fim.seibt.gitwrapper.repo;
import
java.io.File
;
/**
* A git {@link Repository}.
*/
public
class
Repository
{
private
GitWrapper
gitWrapper
;
...
...
@@ -9,6 +12,16 @@ public class Repository {
private
String
url
;
private
File
dir
;
/**
* Constructs a new {@link Repository}.
*
* @param gitWrapper
* the {@link GitWrapper} to use
* @param url
* the url the {@link Repository} was cloned from
* @param dir
* the directory containing the {@link Repository}
*/
Repository
(
GitWrapper
gitWrapper
,
String
url
,
File
dir
)
{
this
.
gitWrapper
=
gitWrapper
;
this
.
url
=
url
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment