修改/删除仓库文件
修改仓库文件
1.修改工作目录中的‘hello world.py’文件
在这里插入图片描述2.使用git add命令,将修改后的‘hello world.py’文件提交到暂存区
在这里插入图片描述3.使用git commit -m命令,添加‘hello world.py’文件到仓库,并赋予备注
在这里插入图片描述删除仓库文件
1.删除工作目录中的‘hello world.py’文件
在这里插入图片描述2.使用git rm命令,删除Git仓库中的‘hello world.py’文件
在这里插入图片描述3.使用git commit -m命令,提交‘hello world.py’文件的删除指令到仓库,并赋予备注
在这里插入图片描述
网友评论