Android Studio Git 修改用户名、密码、URL

修改用户名、密码: 
在AndroidStudio的terminal 


git config --global user.name "wdf"
git config --global user.email “……”
git config --list获取所有信息
1
2
3
修改URL: 
找到项目路径下的.git目录下的config文件 
 
打开直接修改下面地址即可。 


其他常用操作命令

Git相关命令介绍之建立仓库
Git global setup:
git config --global user.name "wang"
git config --global user.email "写自己的邮箱"

Create a new repository:
mkdir test
cd test
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin 地址(比如:http://android.git)
git push -u origin master

Push an existing Git repository:
cd existing_git_repo
git remote add origin 地址(比如:http://android.git)
git push -u origin master


Clone an existing Git repository:
git clone  地址(比如:http://android.git)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
gitblit相关介绍 
http://download.csdn.net/download/danfengw/9686380
 

猜你喜欢

转载自blog.csdn.net/NCTU_to_prove_safety/article/details/88313065