|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.gradle.api.DefaultTask
org.ajoberstar.gradle.git.tasks.GitBase
org.ajoberstar.gradle.git.tasks.GitStatus
public class GitStatus extends GitBase
Gets the status of all files in the repository.
Method Summary | |
---|---|
FileCollection
|
getAdded()
Gets all new files added to the index, but not yet commited to HEAD. |
FileCollection
|
getChanged()
Gets all existing files with changes added to the index, that have not been committed to HEAD. |
FileCollection
|
getConflicting()
Gets all files that are in conflict. |
FileCollection
|
getIgnored()
Get files that have been ignored and aren't in the index. |
FileCollection
|
getMissing()
Get files that have been deleted from the filesystem, but have not been removed from the index yet. |
FileCollection
|
getModified()
Gets all existing files that have been modified, but the changes aren't in the index. |
FileCollection
|
getRemoved()
Gets all files that have been removed from the index. |
FileCollection
|
getUntracked()
Gets all files that have not been ignored or added to the index. |
FileCollection
|
getUntrackedDirs()
Gets all directories that have not been ignored or added to the index. |
void
|
status()
|
Methods inherited from class GitBase | |
---|---|
getGit, getRepoDir, setRepoPath |
Method Detail |
---|
public FileCollection getAdded()
public FileCollection getChanged()
public FileCollection getConflicting()
public FileCollection getIgnored()
public FileCollection getMissing()
public FileCollection getModified()
public FileCollection getRemoved()
public FileCollection getUntracked()
public FileCollection getUntrackedDirs()
tion public public void status()
Groovy Documentation