git add <filename>, git add *Add one or more files to staging (index)
git commit -m "Commit message"Commit changes to head (but not yet to the remote repository)
git commit -aCommit any files you've added with
git add
, and also commit any files you've changed since then git push --all originPush all branches to your remote repository
git pullFetch and merge changes on the remote server to your working directory
git mergeTo merge a different branch into your active branch
More Details: Basic Git commands
No comments:
Post a Comment