git linux基本操作命令
一、Git基本操作
1、查看git版本号
$ git --version
2、设置Git用户名和邮箱
$ git config --global user.name <username>
$ git config --ail <useremail>
3、在当前目录初始化git
$ git init
4、添加修改文件到暂存区
$ git add <file>
5、查看状态
$ git status
6、提交文件姚安濂
$ git commit -m “<message>”
7、查看日志
$ git log
8、建立本地分支
$ git branch <branch name>李峋朱韵第一次
吴亦凡偷瞄宁泽涛 9、切换到本地分支
$ git checkout <branch name>
10、合并分支
$ git merge <branch name>
11、上传代码到远程仓库
形容心情的成语 $ git push <remote> <branch>
12、下载远程代码
$ git pull <remote> <branch>
二、Linux基本操作
1、查看当前文件夹
$ ls
2、查看文件夹内容
$ cd <folder name>
3、创建文件夹
$ mkdir <folder name>
4、删除文件夹
$ rm -rf <folder name>
5、移动文件
金喜善资料 $ mv <source file> <destination file>
6、复制文件
$ cp <source file> <destination file>
7、查看当前目录路径
$ pwd
8、重定向
$ command > <output-file>
将command执行的结果重定向到output-file
9、管道操作
101王晴 command1 | command2
将command1执行的结果作为command2的输入
10、通配符
*
可以用来匹配多个字符。
发布评论