Tutorials - Easy and transparent explanation of topics
  • School Software
  • Diagnostic Lab
  • Gst Billing
  • Hr
  • Bulk Sms
  • Accounting
  • Contact Us
School Software
Diagnostic Lab
Gst Billing
Hr
Bulk Sms
Accounting
Contact Us
Tutorials - Easy and transparent explanation of topics
  • School Software
  • Diagnostic Lab
  • Gst Billing
  • Hr
  • Bulk Sms
  • Accounting
  • Contact Us
General, Git

Ubuntu 17.10 Gufw firewall bug error solved

February 8, 2018 by Blog Admin No Comments

Ubuntu 17.10 gufw firewall bug error is getting common with most of Linux users. The bug is that after installing the Uncomplicated Firewall(GUFW) in Ubuntu 17.10 it does…

Git, Tutorials

How to Log in GIT

February 27, 2017 by Blog Admin No Comments

LOG View whole commits history git log View last n commits with its message only git log –oneline -n E.g. git log –oneline -n 2 View commits history…

Git, Tutorials

How to Tag in GIT

February 27, 2017 by Blog Admin No Comments

TAGGING A GIT BRANCH Show all tags git tag Search tag git tag -l “tag-search-pattern” E.g. git tag -l “v2.0.2*” Create annotated tag git tag -a <tagname> -m…

Git, Tutorials

How to Compare Branch in GIT

February 27, 2017 by Blog Admin No Comments

COMPARE BRANCH Compare two branches (local) and show how much commits each branch is ahead of the other git rev-list –left-right –count <branch1>…<branch2> DIFF STATUS Get differences status…

Git, Tutorials

How to List all Remote Branches in GIT

February 27, 2017 by Blog Admin No Comments

List all remote branches # Show only remote branches names git remote # Show remote branches names with links git remote -v Update everything on local from remote…

Git, Tutorials

How to Rename Branch in GIT

February 27, 2017 by Blog Admin No Comments

Rename currently checked-out local branch git branch -m <new-branch-name> Rename local branch git branch -m <branch_name_to_rename> <new-branch-name> push new branch name to remote git push origin :<old_name> <new_name>…

Git, Tutorials

How to List Branches in GIT

February 27, 2017 by Blog Admin No Comments

List all local branches with names only git branch List all remote branches with names only git branch -r List all local and remote branches with names only…

Git, Tutorials

How to Delete Branch in GIT

February 27, 2017 by Blog Admin No Comments

Switch to some other branch first git checkout <some-other-branch-name> Delete remote branch git push origin –delete <branch_name> Delete local branch now (This command will fail, if there is…

Git, Tutorials

How to Create Branch in GIT

February 27, 2017 by Blog Admin No Comments

Create a blank branch (no-switching) git branch <branch-name> Create a blank branch and switch to it git checkout -b <branch-name> Create a branch from other branch git checkout…

Git, Tutorials

How to Merge in GIT

February 27, 2017 by Blog Admin No Comments

register modified and untracked files git add <files-to-add> Commit changes git commit -m “commit message” pull changes from origin git pull –rebase In case, merge conflict appears git…

Load more posts
Page 1 of 212»
FacebookTwitterInstagramGoogle plusPinterestLinkedin
© 2017 copyright . All rights reserved.