1.bitbucket

1.1创建用户

1.2创建项目

1.3添加权限

 

2.Git

2.1创建账户

#git config --global user.name "admin"

#git conflig --global user.email "admin@email"

2.2添加文件

#git add file

#git commit -m "初始提交“

#git remote add origin http://admin@IP:7990/scm/gds/gds.git

#git push -u origin master

2.3如果代码库已存在

#git remote set-url origin http://admin@IP:7990/gds/gds.git

#git push -u origin master

 

相关文章:

  • 2022-12-23
  • 2021-09-29
  • 2021-04-25
  • 2022-01-06
  • 2021-06-16
  • 2021-11-25
  • 2022-02-08
猜你喜欢
  • 2021-12-09
  • 2021-11-12
  • 2022-02-01
  • 2022-03-01
  • 2022-01-29
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案