问题描述
- Bictbucket如何提交的问题
-
从别人那里clone来的代码 更改之后,提交自己的账户仓库上去 怎么提交时需要别人的密码?
不用他的密码怎么操作?
解决方案
因为你的git remote还是别人的remote repository地址。你要把他改成你自己的repository。
1、git remote看remote repository的地址
2、用git remote set-url 来设置新的remote repository地址
3、假设你的用户名是username,你的repository名字是repo1,部分应该就是git@bitbucket.org:username/repo1.git
另外,如果对方的repository允许你fork的话,你直接fork就完事了。
解决方案二:
表单提交中文乱码的问题
用jquery.form解决表单提交跳转问题
禁用(灰化) Button 后提交的问题
解决方案三:
不好意思,有些tag出错了,我这边再重新打一遍:
用这个命令来修改remote repository地址:
git remote set-url <remote-name> <remote-url>
remote-url应该是类似下面这样:
git@bitbucket.org:username/repo1.git
时间: 2024-10-14 13:19:25