Tag : remote-git-hub
Tag : remote-git-hub
Git Hub is online file version service, it gives following benefits…
How to install GitHub
yum install git.x86_64
Configure Git Hub
git config --global user.name "appa"
git config –global user.email “appasaheb.sawant@gmail.com”
Copy SSH key and add it into git hub setting
cat ~/.ssh/id_rsa.pub
Clone/Checkout Git Repository
git clone git@github.com:<account name>/<repo name>.git
Update Repository
git pull origin
Add file in git
git add <file path>
Commit File
git commit -m 'commite message' <file path>
git push origin master
Create Branch
git branch <branch name>
git push origin <branch name>
Checkout branch
git checkout <branch name>
Merge Branch
git checkout <branch name>
git merge <branch name of which need to be merge into above branch>
git push origin <branch name>
Reset Merge
git reset --merge ORIG_HEAD
Create Tag
git tag <tag name>
git push --tags
Delete Tag
git tag -d <tag name>
git push origin :refs/tags/<tagname>
Check Version Difference
git diff <file path>
List of files need to resolves
git ls-files -u
Categories: Linux, Website Peformance