AS git 操作
先在項(xiàng)目中選中要上傳的文件??
點(diǎn)擊add
commit directory&填寫(xiě)備注 then 點(diǎn)擊commit bt??
click push bt & confirm git pwd??
git下載
http://git-scm.com/download/
git clone
在想要clone的地方看靠,右鍵,git bash here
git clone [URL]
eg: git clone?https://gitee.com/superreally/TCProject2021.git
git上傳單個(gè)文件/夾
git add .? //由于文件發(fā)生了變化所以我們要追蹤文件變化特別意不要忘記add后面的點(diǎn)
git commit -m "Visio Test"? //這里相當(dāng)于一個(gè)注釋告訴別人誰(shuí)做了什么操作
git push -u origin master? //經(jīng)過(guò)上面的操作我們最終要用這個(gè)命令來(lái)將本地的文件上傳到git服務(wù)器