用git上传代码到码云

​​github 的 git 命令

基本信息设置

git config --global user.name 'xuyisheng'

git config --global user.email '[email protected]'

git status 表示提交的状态

1.在要上传的文本夹里右击选择git bush,然后输入git init

git init 初使化git数据

2.将文件传到缓存区!!

git add files (files:表示要上传的文件,如果全部上传就用 ‘*’号

3.将文件提交到github上

git commit -m 'my fist commit this is a web for jiaoyu'

引号中的内容为描述!

github 远程仓库的操作

在先改一下.git文件夹下的config在里面添加地址

[remote "origin"]

url=https://www.gitee.com/jiaoyu521/E3_shop.git

然后确保帐号密码正确,查看位置为

控制面板\用户帐户\凭据管理器

[windows凭据]--> 普通凭据内的gitee 的下拉框打开进行查看或编辑。

然后,在git bash 对话框上写

git push origin master就好了​​​​

相关推荐