筆記 - Git使用

經常使用指令: html

Clone項目 git

git clone http://git.oschina.net/xxxxxx/xxxxxx.git github

#更新本地代碼 vim

git pull bash

#Add app

git add . spa

#commit .net

git commit -am "" htm

#提交master分支 blog

git push origin master

#進入指定的本地目錄

cd /d/apps/WorkSpaces/ADT/rexdemo


#避免每次都輸入username and password:

http://www.cnblogs.com/ballwql/p/3462104.html

#使用方法一便可(親測)


1.1 建立文件存儲GIT用戶名和密碼, Ubuntu下也可用

在%HOME%目錄中,通常爲C:\users\Administrator,也能夠是你本身建立的系統用戶名目錄,反正都在C:\users\中。文件名爲.git-credentials,因爲在Window中不容許直接建立以"."開頭的文件,因此須要藉助git bash進行,打開git bash客戶端,進行%HOME%目錄,而後用touch建立文件 .git-credentials, 用vim編輯此文件,輸入內容格式:

touch .git-credentials

vim .git-credentials

https://{username}:{password}@github.com

1.2 添加Git Config 內容

進入git bash終端, 輸入以下命令:

git config --global credential.helper store

上面操做完成後,嘗試從Git上面Clone一份代碼,這時還須要輸入一次,Clone完成後,打開 .git-credentials,會發現多了行數據,就是用戶名和數據,是使用明文保存的

相關文章
相關標籤/搜索