git 使用记录

远程仓库为空初始化

初始化本地仓库

git init 

git 使用记录_第1张图片

在本地仓库书写代码(这里可以编辑一个文本文件做测试,如hello.txt)

执行:git add 要让git管理的文件(git add hello.txt)
			
	=>执行完此操作将我们的hello.txt保存到了暂存区

执行:git commit -m '备注信息'

	=>执行此操作将我们的文件提交到了本地仓库

执行:git remote add origin 自己的仓库地址(如:git remote add origin https://gitee.com/currygl/ttt.git)

	=>执行此操作将我们的远程仓库和本地仓库绑定(只需要绑定一次,后面的修改提交就不需要了)

git push -u origin master

	=>执行此操作将本地仓库的文件推送到远程仓库

如果远程仓库已有内容

初始化本地仓库

git init 

将本地代码库与远程代码库相关联

$ git remote add origin https://gitee.com/qlqaq/projects/仓库名称

把远程仓库的代码更新到当前分支上面

$ git pull --rebase origin master

git 使用记录_第2张图片

git add 文件名
git commit -m ""

将本地代码推送到指定远程的仓库中

$ git push -u origin master

git 使用记录_第3张图片
参考文章
https://www.cnblogs.com/xyfer1018/p/11493718.html
https://blog.csdn.net/qq_38215042/article/details/109406958

删除文件

rm 文件名
git commit -m ""
git push

git 使用记录_第4张图片

你可能感兴趣的:(js,git)