8000 Integration of all bitbucket PR and branches by guyzmo · Pull Request #90 · guyzmo/git-repo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Integration of all bitbucket PR and branches #90

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Apr 28, 2017
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ section in the gitconfig:
token = YourOtherVerySecretKey

[gitrepo "bitbucket"]
token = username:password
username = ford.prefect
token = YourOtherSecretKey

[gitrepo "gogs"]
fqdn = UrlOfYourGogs
Expand All @@ -165,7 +166,8 @@ You also have the ability to set up an alias:

[gitrepo "bitbucket"]
alias = bit
token = username:password
username = ford.prefect
token = YourOtherSecretKey

that will change the command you use for a name you'll prefer to handle actions
for the service you use:
Expand Down Expand Up @@ -274,6 +276,7 @@ To use your own credentials, you can setup the following environment variables:
* [x] add regression tests (and actually find a smart way to implement them…)
* [x] add travis build
* [x] show a nice progress bar, while it's fetching (cf [#15](https://github.com/guyzmo/git-repo/issues/15))
<<<<<<< HEAD
* [x] add support for gogs (cf [#18](https://github.com/guyzmo/git-repo/issues/18))
* [ ] add support for handling gists
* [x] github support
Expand All @@ -284,6 +287,11 @@ To use your own credentials, you can setup the following environment variables:
* [x] gitlab support (cf [#10](https://github.com/guyzmo/git-repo/issues/10))
* [ ] bitbucket support (cf [#11](https://github.com/guyzmo/git-repo/issues/11))
* [ ] add application token support for bitbucket (cf [#14](https://github.com/guyzmo/git-repo/issues/14))
=======
* [x] add support for handling gists (cf [#12](https://github.com/guyzmo/git-repo/issues/12) and [#13](https://github.com/guyzmo/git-repo/issues/13))
* [x] add support for handling pull requests (cf [#10](https://github.com/guyzmo/git-repo/issues/10) and cf [#11](https://github.com/guyzmo/git-repo/issues/11))
* [x] add application token support for bitbucket (cf [#14](https://github.com/guyzmo/git-repo/issues/14))
>>>>>>> 💄 Updated progress in readme and updated bitbucket documentation!
* [ ] add support for managing SSH keys (cf [#22](https://github.com/guyzmo/git-repo/issues/22))
* [ ] add support for issues?
* [ ] add support for gerrit (cf [#19](https://github.com/guyzmo/git-repo/issues/19))
Expand Down
6 changes: 3 additions & 3 deletions buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ develop = .
eggs-directory = ${buildout:directory}/var/eggs
develop-eggs-directory = ${buildout:directory}/var/develop-eggs
parts-directory = ${buildout:directory}/var/parts
# develop-dir = ${buildout:directory}/var/clone/
# extensions=gp.vcsdevelop
# vcs-extend-develop=git+https://github.com/…@…#egg=
develop-dir = ${buildout:directory}/var/clone/
extensions=gp.vcsdevelop
vcs-extend-develop=git+https://bitbucket.org/guyzmo/python-bitbucket#egg=pybitbucket

[git_repo]
recipe = zc.recipe.egg
Expand Down
2 changes: 1 addition & 1 deletion git_repo/repo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env pytho

'''
Usage:
Expand Down
Loading
0