mirror of
https://github.com/go-gitea/git.git
synced 2026-07-18 12:34:40 -04:00
[GH-ISSUE #35] Feature question #2
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @joeblew99 on GitHub (Feb 28, 2017).
Original GitHub issue: https://github.com/go-gitea/git/issues/35
I am needing to be able to easily manage git repository but also fork them make changes and push them.
With standard git CLI there is a pretty standard song and dance to go through for the maintainer and the contributor.
So I figured why not wrap up this flow as a golang tool and get some commonality amount teams.
Is this a reasonable use case to built on top of this lib ?
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
@lunny commented on GitHub (Feb 28, 2017):
This project is not a pure go implementation of git. There are many functions are wrap of git command.
@sapk commented on GitHub (Apr 26, 2017):
This implementation, like @lunny say, is more of a wrapper around git cli command that is use in gitea. You can use it as a lib to clone, Push, Commit some changes ...
You can found generated documentation here : https://godoc.org/code.gitea.io/git
If you prefer a complete go implementation there is that : https://github.com/src-d/go-git (it's maybe more documented with example also)
If it answer your question, please close this issue.
Feature questionto [GH-ISSUE #35] Feature question