Git常用命令
1.git init
新建一个目录,将其初始化为Git代码库
2. git config --global user.name “[name]”
git config --global user.email “[email address]”
设置提交代码时的用户信息
3.git status 命令
显示工作目录和暂存区的状态,只到文件
4.git add .
添加当前目录的所有文件到暂存区
5.git commit -m [message]
提交暂存区的指定文件到仓库区
与上传到华为云
找到你要上传的项目,点击右键,点Git Bash Here
1.git status 查看是否全部提交到本地仓库
2git commit -m “” 提交
1.git remote -v 查看是否有建立联系的仓库
没有就创建联系
2.git remote add huawei(你起的名称名称) +git@codehub.devcloud.cn-north-4.huaweicloud.com:zxz-Java2bmszlkj-CC00001/springbootTest.git(去华为云复制ssh的地址)
建立连接
3.git push huawei master (没有