您的位置:首页 > 其它

Git on ubuntu

2015-06-01 20:09 399 查看
Tutorial Series

1.How To Install Git on Ubuntu 14.04

2.How To Use Git Effectively

3.How To Use Git Branches

1.How To Install Git on Ubuntu 14.04

sudo apt-get update
sudo apt-get install git

git config --global user.name "Your Name"
git config --global user.email "youremail@domain.com"
git config --list
nano ~/.gitconfig


2.How To Use Git Effectively

git remote add origin url
git remote -v
git push origin master
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: