红联Linux门户
Linux帮助

Git安装和配置(网络代理的设置)

发布时间:2015-04-14 21:27:17来源:linux网站作者:coolwaterld

安装 git
sudo apt-get install git

查看git配置
git config --list
或者~/gedit .gitconfig

git设置代理(一般用于公司内部网络,如果上网正常,不需要设置)
git config --global http.proxy ip:port
git用户名
git config --global user.name "FIRST_NAME LAST_NAME"
配置email
git config --global user.email "MY_NAME@example.com"

建立Bitbucket用户和仓库
https://confluence.atlassian.com/display/BITBUCKET/Create+a+Bitbucket+account+and+a+Git+repository

初始
mkdir /path/to/your/project
cd /path/to/your/project
git init
git remote add origin https://XXX@bitbucket.org/YYYY/ZZZZ.git
git add .
git commit -m "modify"
git push -u origin master

修改后
修改文件(git已经建立)
git add .
git commit -m "注释"
git push -u origin master

检出
git pull

克隆
git clone https://XXX@bitbucket.org/YYYY/ZZZZ.git