Wednesday, August 5, 2015

git development notes


these are assuming using git at unix command line:

follow instructions to create an ssh id_pub and update bitbucket for that.  separate from project.

clone working instance in a directory.

git clone https://username@bitbucket.org/repository/project.git

To commit files, git checkout

git status
git add -A
git commit -am "my edits"
git push -u origin master

**

No comments:

Post a Comment