/git-upload.bat (71762fb9a3cc4d0e669b8528124697b5fd36140f) (665 bytes) (mode 100644) (type blob)
@echo off
git status
if errorlevel 1 (
git init
git remote add origin https://rocketgit.com/user/fluffrabbit/SkyHammer
)
git add -A .
set /p desc=Commit description:
set /p username=Username to display:
git config user.email "@"
git config user.name "%username%"
git commit -m "%desc%"
git push origin master
if errorlevel 1 (
echo Forcing push, wiping the repository and commit history and replacing it with your folder. Only proceed if you REALLY want to shake things up. A better alternative might be to run git pull origin master and then try running git-upload again. Proceeding with the force.
git push origin master --force
)
pause
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
1460 |
c132ec201f0215a5aa06bd3e6f0954cb9c08b4ae |
README.md |
100644 |
blob |
1170 |
3a61ca2dc07623b8da7ef7312943f403f3d3bb94 |
UNLICENSE.txt |
040000 |
tree |
- |
e105c24e0798aa039b204f9dcbca36828d3835ab |
data |
100644 |
blob |
324 |
1d27ec53b2528f1844eaa8c7491d12cf177ae762 |
engine.cfg |
100644 |
blob |
7954 |
a617b0b8460e2255aa68d6487eefab8b542a8267 |
export.cfg |
100755 |
blob |
652 |
c43448d8124f9f55d0e21f505649ac185bfc6f9a |
git-upload |
100644 |
blob |
665 |
71762fb9a3cc4d0e669b8528124697b5fd36140f |
git-upload.bat |
100644 |
blob |
3875 |
3d7add439450b1e9233c5157f470dd8e887c0298 |
icon.png |
100644 |
blob |
18 |
5130fd1aabc49e7fb3839ce5747775b22672a627 |
icon.png.flags |
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://rocketgit.com/user/fluffrabbit/SkyHammer
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/fluffrabbit/SkyHammer
Clone this repository using git:
git clone git://git.rocketgit.com/user/fluffrabbit/SkyHammer
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main