简单记录常用git 命令

Posted AlexCZL

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单记录常用git 命令相关的知识,希望对你有一定的参考价值。

声明:仅作笔记用

拉取远程代码

1.git pull

2.如果需要,输入账户名密码

 

将本地代码推送到远程

1.git push

2.如果需要,输入账户名密码

 

同步远程分支

1.git fetch

2.git checkout -b local-branchname origin/remote_branchname

运行 git fetch,可以将远程分支信息获取到本地,再运行 git checkout -b local-branchname origin/remote_branchname  就可以将远程分支映射到本地命名为local-branchname  的一分支

 

持续添加中~~~

以上是关于简单记录常用git 命令的主要内容,如果未能解决你的问题,请参考以下文章

Git-------常用操作记录

Git-------常用操作记录

gitgit常用命令简介

学会 Git 命令就是这么简单

Git的简单使用

Git的简单使用