Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python3-docopt /
examples /
git /
Delete
Unzip
Name
Size
Permission
Date
Action
git.py
1.7
KB
-rwxr-xr-x
2014-06-16 11:14
git_add.py
851
B
-rw-r--r--
2014-06-16 11:14
git_branch.py
1.36
KB
-rw-r--r--
2014-06-16 11:14
git_checkout.py
931
B
-rw-r--r--
2014-06-16 11:14
git_clone.py
1.22
KB
-rw-r--r--
2014-06-16 11:14
git_commit.py
2.08
KB
-rw-r--r--
2014-06-16 11:14
git_push.py
904
B
-rw-r--r--
2014-06-16 11:14
git_remote.py
815
B
-rw-r--r--
2014-06-16 11:14
Save
Rename
""" usage: git branch [options] [-r | -a] [--merged=<commit> | --no-merged=<commit>] git branch [options] [-l] [-f] <branchname> [<start-point>] git branch [options] [-r] (-d | -D) <branchname> git branch [options] (-m | -M) [<oldbranch>] <newbranch> Generic options -h, --help -v, --verbose show hash and subject, give twice for upstream branch -t, --track set up tracking mode (see git-pull(1)) --set-upstream change upstream info --color=<when> use colored output -r act on remote-tracking branches --contains=<commit> print only branches that contain the commit --abbrev=<n> use <n> digits to display SHA-1s Specific git-branch actions: -a list both remote-tracking and local branches -d delete fully merged branch -D delete branch (even if not merged) -m move/rename a branch and its reflog -M move/rename a branch, even if target exists -l create the branch's reflog -f, --force force creation (when already exists) --no-merged=<commit> print only not merged branches --merged=<commit> print only merged branches """ from docopt import docopt if __name__ == '__main__': print(docopt(__doc__))