Git 的使用

https://www.git-scm.com/ 

Git BOOK:https://www.git-scm.com/book/zh/v2html

 

碼雲

註冊 https://gitee.com/git

學習如何新建(私有)項目 http://www.javashuo.com/article/p-rvdwnzth-cp.htmlgithub

系統配置

http://www.javashuo.com/article/p-qvlysasi-gr.htmldom

系統中安裝git 官網 https://git-scm.com/downloadspost

# sudo apt-get install git

或者
# add-apt-repository ppa:git-core/ppa
# sudo apt update
# sudo apt install git

 對git進行配置學習

# 分別對應你的碼雲郵箱和用戶名
git config --global user.email "youremail@domain.com"
git config --global user.name "Your Name"

# 查看剛纔的配置
git config --list

Pycharm配置碼雲

1. pycharm安裝gitee插件

https://blog.csdn.net/sui_yi123/article/details/82777811fetch

File--Setting--Plugins--輸入gitee--Search in repositories--Install--從新啓動pycharmui

若出現下載失敗的狀況(提示Plugin Gitee was not installed: Cannot download 'https://plugins.jetbrains.com/pluginManager/?action=download&id=org.intellij.gitosc&build=PY-182.4505.26&uuid=0132dcc3-073a-42d2-a584-7da149d193f7': Read timed out)url

# https://blog.csdn.net/qq_36488374/article/details/80881650
提示沒法下載的問題是誤用了https協議下載致使的
解決辦法:把Use secure connection取消勾選就行

 

2. 鏈接碼雲

參考連接:http://www.javashuo.com/article/p-qvlysasi-gr.htmlspa

 

在setting的version control 裏找到Gitee

輸入碼雲的帳號和密碼,與碼雲創建鏈接:

接下來新建碼雲的項目,VCS -- import into Version Control -- share project on gitee:

 

VCS -- Git -- Push 上傳

 

文件修改後提交 http://www.javashuo.com/article/p-qvlysasi-gr.html

對修改後的文件或目錄點擊右鍵:Git——Add,先把文件放入暫存區

也能夠直接提交文件到倉庫,方法是Git—Commit File...,下面的過程就同樣了

填好commit的信息後,點擊下面的commit and Push,能夠直接提交到網上

 

Git命令:

Git命令總結

Git經常使用命令總結

git clone
git remote
git fetch
git pull
git push

 

 

 

 

Github - helloword

https://github.com/TanRong1996/hello-world/

  

相關文章
相關標籤/搜索