List of commits:
Subject Hash Author Date (UTC)
xxx c9f4e6be0df7e76e320430a6a49fc70c823086f8 dongge 2024-02-09 00:28:22
first comm b3449b3a75cd750ef6cd37e46b27ab0f0fd3cabf dongge 2024-02-03 09:01:41
Commit c9f4e6be0df7e76e320430a6a49fc70c823086f8 - xxx
Author: dongge
Author date (UTC): 2024-02-09 00:28
Committer name: dongge
Committer date (UTC): 2024-02-09 00:28
Parent(s): b3449b3a75cd750ef6cd37e46b27ab0f0fd3cabf
Signer:
Signing key:
Signing status: N
Tree: 32fcb1c36ed68e17ef1b6743e00d47c3e3fa4a9e
File Lines added Lines deleted
1.txt 4 1
2.sh 14 0
File 1.txt changed (mode: 100644) (index 56a6051..b0220e6)
1 1
1
2 123
3
4 456
File 2.sh added (mode: 100644) (index 0000000..4613357)
1 #!/bin/sh 
2  
3   if git-rev-parse --verify HEAD >/dev/null 2>&1 ; then 
4      against=HEAD 
5   else 
6      # Initial commit: diff against an empty tree object 
7      against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 
8   fi 
9   # Find files with trailing whitespace 
10   for FILE in `exec git diff-index --check --cached $against -- | sed '/^[+-]/d' | sed -r 's/:[0-9]+:.*//' | uniq` ; do 
11      # Fix them! 
12      sed -i 's/[[:space:]]*$//' "$FILE" 
13   done 
14   exit
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/dongge/m1

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/dongge/m1

Clone this repository using git:
git clone git://git.rocketgit.com/user/dongge/m1

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