Skip to content
View Faisalduwane's full-sized avatar
  • Bushuman ICT Interprese
  • Ethiopia

Block or report Faisalduwane

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Faisalduwane/README.md
#-*-coding:utf8;-*- #qpy:console print "This is console module" $ sudo dnf install git-all $ sudo apt install git-all $ git --version $ sudo dnf install dh-autoreconf curl-devel expat-devel gettext-devel \   openssl-devel perl-devel zlib-devel $ sudo apt-get install dh-autoreconf libcurl4-gnutls-dev libexpat1-dev \   gettext libz-dev libssl-dev $ $ make configure $ ./configure --prefix=/usr $ make all doc info $ sudo make install install-doc install-html install-info $ git clone git://git.kernel.org/pub/scm/git/git.git $ git config --list --show-origin $ git config --global user.name "faisalduwane" $ git config --global user.email faysalduwane410@gmail.com $ git config --global core.editor emacs $ git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin" $ git config --global init.defaultBranch main $ git config --list user.name=faisalduwane user.email=faysalduwane410@gmail.com color.status=auto color.branch=auto color.interactive=auto color.diff=auto ... $ git config user.name faisalduwane $ git config --show-origin rerere.autoUpdate file:/home/faisalduwane/.gitconfig false $ git help $ git --help $ man git- $ git help config $ git add -h usage: git add [] [--] ...   -n, --dry-run dry run   -v, --verbose be verbose   -i, --interactive interactive picking   -p, --patch select hunks interactively   -e, --edit edit current diff and apply   -f, --force allow adding otherwise ignored files   -u, --update update tracked files   --renormalize renormalize EOL of tracked files (implies -u)   -N, --intent-to-add record only the fact that the path will be added later   -A, --all add changes from all tracked and untracked files   --ignore-removal ignore paths removed in the working tree (same as --no -all)   --refresh don't add, only refresh the index   --ignore-errors just skip files which cannot be added because of errors   --ignore-missing check if - even missing - files are ignored in dry run   --chmod (+|-)x override the executable bit of the listed files   --pathspec-from-file read pathspec from file   --pathspec-file-nul with --pathspec-from-file, pathspec elements are separated with NUL character $ cd /home/user/my_project $ git init $ git add *.c $ git add LICENSE $ git commit -m 'Initial project version' $ git clone https://github.com/libgit2/libgit2 $ git clone https://github.com/libgit2/libgit2 mylibgit $ git status On branch master Your branch is up-to-date with 'origin/master'. nothing to commit, working tree clean $ echo 'My Project' > README $ git status On branch master Your branch is up-to-date with 'origin/master'. Untracked files:   (use "git add ..." to include in what will be committed)   README nothing added to commit but untracked files present (use "git add" to track) $ git add README $ git status On branch master Your branch is up-to-date with 'origin/master'. Changes to be committed:   (use "git restore --staged ..." to unstage)   new file: README $ git status On branch master Your branch is up-to-date with 'origin/master'. Changes to be committed:   (use "git reset HEAD ..." to unstage)   new file: README Changes not staged for commit:   (use "git add ..." to update what will be committed)   (use "git checkout -- ..." to discard changes in working directory)   modified: CONTRIBUTING.md $ git add CONTRIBUTING.md $ git status On branch master Your branch is up-to-date with 'origin/master'. Changes to be committed:   (use "git reset HEAD ..." to unstage)   new file: README   modified: CONTRIBUTING.md $ git add CONTRIBUTING.md $ git status On branch master Your branch is up-to-date with 'origin/master'. Changes to be committed:   (use "git reset HEAD ..." to unstage)   new file: README   modified: CONTRIBUTING.md $ git status -s  M README MM Rakefile A lib/git.rb M lib/simplegit.rb ?? LICENSE.txt $ cat .gitignore *.[oa] *~

Popular repositories Loading

  1. phoneinfoga phoneinfoga Public

    Forked from sundowndev/phoneinfoga

    Information gathering & OSINT framework for phone numbers

    Go 1

  2. Faisalduwane Faisalduwane Public

    Config files for my GitHub profile.

    1

  3. VCS VCS Public