Showing posts with label git. Show all posts
Showing posts with label git. Show all posts

Thursday, December 31, 2015

GIT notes for building and refreshing with bitbucket site


To update cloned repository, in the directory in question:

git pull origin master

To clone the directory, use

git clone master

Be sure to pull down subscriptions and subscribe to the notifications

SIMH example

https://github.com/simh/simh

git clone https://github.com/simh/simh.git


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

**