Skip to content

Commit 1608a1b

Browse files
committed
Merge branch features/bitbucket-1.9 into devel
2 parents 6c0afd9 + 25cc4fe commit 1608a1b

File tree

51 files changed

+4856
-505
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+4856
-505
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ section in the gitconfig:
150150
token = YourOtherVerySecretKey
151151

152152
[gitrepo "bitbucket"]
153-
token = username:password
153+
username = ford.prefect
154+
token = YourOtherSecretKey
154155

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

166167
[gitrepo "bitbucket"]
167168
alias = bit
168-
token = username:password
169+
username = ford.prefect
170+
token = YourOtherSecretKey
169171

170172
that will change the command you use for a name you'll prefer to handle actions
171173
for the service you use:
@@ -274,6 +276,7 @@ To use your own credentials, you can setup the following environment variables:
274276
* [x] add regression tests (and actually find a smart way to implement them…)
275277
* [x] add travis build
276278
* [x] show a nice progress bar, while it's fetching (cf [#15](https://github.com/guyzmo/git-repo/issues/15))
279+
<<<<<<< HEAD
277280
* [x] add support for gogs (cf [#18](https://github.com/guyzmo/git-repo/issues/18))
278281
* [ ] add support for handling gists
279282
* [x] github support
@@ -284,6 +287,11 @@ To use your own credentials, you can setup the following environment variables:
284287
* [x] gitlab support (cf [#10](https://github.com/guyzmo/git-repo/issues/10))
285288
* [ ] bitbucket support (cf [#11](https://github.com/guyzmo/git-repo/issues/11))
286289
* [ ] add application token support for bitbucket (cf [#14](https://github.com/guyzmo/git-repo/issues/14))
290+
=======
291+
* [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))
292+
* [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))
293+
* [x] add application token support for bitbucket (cf [#14](https://github.com/guyzmo/git-repo/issues/14))
294+
>>>>>>> 💄 Updated progress in readme and updated bitbucket documentation!
287295
* [ ] add support for managing SSH keys (cf [#22](https://github.com/guyzmo/git-repo/issues/22))
288296
* [ ] add support for issues?
289297
* [ ] add support for gerrit (cf [#19](https://github.com/guyzmo/git-repo/issues/19))

buildout.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ develop = .
77
eggs-directory = ${buildout:directory}/var/eggs
88
develop-eggs-directory = ${buildout:directory}/var/develop-eggs
99
parts-directory = ${buildout:directory}/var/parts
10-
# develop-dir = ${buildout:directory}/var/clone/
11-
# extensions=gp.vcsdevelop
12-
# vcs-extend-develop=git+https://github.com/…@…#egg=
10+
develop-dir = ${buildout:directory}/var/clone/
11+
extensions=gp.vcsdevelop
12+
vcs-extend-develop=git+https://bitbucket.org/guyzmo/python-bitbucket#egg=pybitbucket
1313

1414
[git_repo]
1515
recipe = zc.recipe.egg

git_repo/repo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env pytho
22

33
'''
44
Usage:

0 commit comments

Comments
 (0)