Git on ubuntu

来源:互联网 发布:安卓版爱剪辑软件 编辑:程序博客网 时间:2024/06/06 09:41

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 urlgit remote -vgit push origin master
0 0
原创粉丝点击