ccgit.commit( gitDir, message )
gitDir is the location of the git folder, eg "lama/.git"
message is the commit message
ccgit.pull( gitDir, remote )
gitDir is the location of the git folder, eg "lama/.git"
remote is the name of the remote to pull from (eg "origin")
ccgit.push( gitDir, remote )
gitDir is the location of the git folder, eg "lama/.git"
remote is the name of the remote to push to (eg "origin")
ccgit.clone( remote, directory )
remote is the URI of the git, eg "https://github.com/KingofGamesYami/LAMA.git"
directory is the name of the directory to clone to (eg "lama")
ccgit.init( directory )
directory is the name of the directory to initialize a git repository in (eg "lama")
ccgit.addRemote( gitDir, name, uri )
gitDir is the location of the git folder, eg "lama/.git"
name is the name of the remote (eg "origin")
uri is the remote's URI, eg "https://github.com/KingofGamesYami/LAMA.git"
ccgit.getRemoteNames( gitDir )
gitDir is the location of the git folder, eg "lama/.git"
ccgit.setCredentials( username, password )
username is your Git account name (eg "KingofGamesYami")
password is, well, your password. No example for this one

/>/>/>
ccgit.addAll( gitDir )
gitDir is the location of the git folder, eg "lama/.git"