Git Create New Repo
create a repository in github, say odeskcreate a work folder in ur localmachine. Say odeskcd odeskgit initcreate some sample filesgit add . (add the new files in git)git commit -m “initial commit”git remote add origin https://xxxxx@github.com/xxxx/odesk.gitgit push origin mastermodify the filegit addgit status -sgit commit -a -s “updateed the file”git push origin master
Git Branch
git branchgit checkout(make branch as active) git checkout -bdo the modify in the files and add git addgit commit -a -m “my commit message”git push origin
Git Merge
git checkout mastergit merge hotfixgit push origin master
Cmd |
|
|
git –version | identify the version | |
git |
Help | |
git config --global user.name " |
config user name | |
git config --global user.email " |
config email | |
git config --global core.editor ' |
config editor | |
cat ~/.gitconfig | ||
git init | To initialize a Git repository from an existing directory, | |
git add . | add files | |
git commit -m ' |
commit the changes along with message. | |
git log | list all the commits | |
git clone git://github.com/schacon/munger.git | clone(push) the git repo | |
git commit -a | editor will oen for enter the commit message | |
git remote add origin https://xxxxx@github.com/xxxxx/odesk.git | To connect your local repository to your GitHub account, you will need to set a remote for your repo and push your commits to it: | |
git push origin master | push the commit to the repo | |
git branch mybranch | create a new branch | |
git checkout mybranch | make mybranch as active | |
git checkout -b mybranch | Creates a new branch called "mybranch" and makes it the active branch | |
git checkout |
switch between branch | |
git merge |
To merge active branch with |
|
git branch -d |
to delete branch | |
git push origin --delete |
To delete remote branch i.e. from GitHub |
0 Comments:
Subscribe to:
Post Comments (Atom)