git命令记录
git init //初始化当前路径为一个git仓库
git add * //添加当前路径下所有东西到git仓库
git commit -m "代码提交信息" //提交添加的文件
git remote add origin https://shenjuncaci@dev.azure.com/shenjuncaci/vue-.netcore/_git/vue-.netcore //连接远程仓库
git push -u origin --all //将本地推送到远程
git fetch origin mater //获取远程最新
------2020-07-16更新
git remote set-url origin --add https://gitee.com/shenjuncaci/Excalibur-Framework.git //单独设置推送链接
GIT常用命令
git init //初始化当前路径为一个git仓库
git add * //添加当前路径下所有东西到git仓库
git commit -m "代码提交信息" //提交添加的文件
git remote add origin https://shenjuncaci@dev.azure.com/shenjuncaci/vue-.netcore/_git/vue-.netcore //连接远程仓库
git push -u origin --all //将本地推送到远程
git fetch origin mater //获取远程最新
GIT增加一个镜像仓库
git remote add mirror https://gitee.com/shenjuncaci/Excalibur-Framework.git //增加一个远程仓库的
git branch --set-upstream-to mirror/master //跟踪远程分支
git push //推送