Skip to content
chlange edited this page Nov 28, 2011 · 5 revisions

Edit README.md

Edit date
Edit version
Edit features
Edit todo
Edit install

New files?

git add FILES

Commit changes

git commit -a -m MESSAGE

Push changes

git push origin BRANCH

Merge branches

git merge BRANCH

New version?

git branch NewVersion
git checkout NewVersion

Create tag

git tag -a TAGNAME (vX.X.X(e for experimental) -m (Version X.X.X Type)

Push tag

git push --tags