
git
omg_lwf
只为更好的未来而奋斗
展开
-
git 基础的命令行
1.基础的查看(关联的远程仓库) git remote -v 查看提交的源 git status 查看git的状态 git branch -v 查看git的分支 2.删除源 git remote rm <name> explain: n xxxxx (fetch) n xxxxx (push) origin xxxxx (fetch) orig...原创 2018-09-26 16:53:43 · 155 阅读 · 0 评论 -
vscode git 使用
一般的准则 可以 先 commit 在拉取,这样可以保证冲突的时候,回退到自己写的版本。 然后进行ctrl +enter 就会添加到本地库 这里面的操作 包括了(git add 和 git commit) 接着进行 拉取 (git pull) ,没有冲突就进行推送(git push) 看到一篇很好的讲解vscode git :https://juejin.im/post/5b0...原创 2019-03-14 10:57:58 · 609 阅读 · 0 评论