xaizek / rocketgit (License: AGPLv3+) (since 2018-12-09)
Light and fast Git hosting solution suitable to serve both as a hub or as a personal code storage with its tickets, pull requests, API and much more.
<root> / root / themes / default / features / anonpush.html (ae964510d9159a187c80c9b6984cb01483493f1e) (827B) (mode 100644) [raw]
<div class="main_title">Features - anonymous push</div>

<div class="islands">
	<div class="island">
	<div class="island_title">What is it?</div>

	It is a feature that allows a user to contribute as fast as possible.<br />
	We do no require an account (this is the anonymous part).<br />
	We think that we cannot make it faster than that.<br/ >
	<br >
	Let's see an example in action:<br />
	<div class="xcode">
	git clone git://git.rocketgit.com/user/catalinux/rocketgit<br />
	cd rocketgit<br />
	# here edit some files<br />
	git add -p<br />
	git commit -m "commit message"<br />
	# use 'guest' as the user and an empty password:<br />
	git push origin master<br />
	</div>
	<br />
	And that is it! Your push will be transformed into a merge request
	and will wait to be merged by the owner of the project.
	</div>
</div>
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master