跳到主要内容

本地目录推送到git上

  1. 配置本机的公钥到gitee上。
  1. 初始化本地目录,其中以[email protected] 为路径

    git init 
    git remote add origin [email protected]:lynnguinan/enterprise-service-xx.git
  1. 提交本地的代码:

    git add . #将当前目录所有文件添加到git暂存区
    git commit -m "my first commit" #提交并备注提交信息
    git push origin master --force #将本地提交推送到远程仓库