Really? What do you mean by complicated? The minimal I can think of is
CODE
git init # new repo
OR
git pull # grab new changes from a server
git add <files>
git status # prints info
git commit -a # not sure what the -a means...
git push # push up to a server
# branching
git branch <newbranch>
git checkout <branchname>
OR
git pull # grab new changes from a server
git add <files>
git status # prints info
git commit -a # not sure what the -a means...
git push # push up to a server
# branching
git branch <newbranch>
git checkout <branchname>
This post has been edited by Andlabs: 19 June 2011 - 04:16 PM


