哪些網(wǎng)站可以接單做推廣搜索引擎
1.安裝git
yum install -y git
2.打開Gitee,創(chuàng)建你的遠程倉庫,根據(jù)提示初始化本地倉庫(這里以我的倉庫為例)
新建好倉庫之后跟著網(wǎng)頁的提示初始化便可以了
3.add、commit、push三板斧
git add . //add倉庫新增(變化)內(nèi)容
git commit -m "日志內(nèi)容(自行編輯)" //上傳本地倉庫
git push //上傳遠程倉庫
4.刪除
git rm +文件
5.查看commit的內(nèi)容
git log
以上就是git的基本使用,有什么問題可以在評論區(qū)提出。