Category: GIT

  • How to set up GIT Repository in Azure DevOps

    Prerequisites You must have an organization and project in Azure DevOps. When you create a project, Azure DevOps automatically creates an empty repository in Repos. 1. Install Git command-line tools Install one of the following Git command-line tools: To install Git for Windows check this link https://dynamics365techy.com/2023/05/git-github-window-os/   2. Clone the repo to your computer To work…

  • Shell Commands for File Management

    Shell commands for file management:   ls: Example: ls Description: Lists files and directories in the current directory.   cd: Example: cd /path/to/directory Description: Changes the current directory to the specified directory.   pwd: Example: pwd Description: Prints the current working directory.   mkdir: Example: mkdir new_directory Description: Creates a new directory with the specified name.…

  • Shell Commands for Directory Management

    list of commonly used shell commands for directory management: mkdir: Create a new directory. Example: mkdir mydir will create a new directory called "mydir" in the current directory.   rmdir: Remove an empty directory. Example: rmdir mydir will remove the directory called "mydir" if it is empty.   rm: Remove files and directories. Example: rm…

  • Basic Shell Commands

    list of basic shell commands commonly used in Unix-like operating systems: cd: Change directory. ls: List directory contents. pwd: Print working directory. mkdir: Create a new directory. touch: Create a new empty file or update the timestamp of an existing file. cp: Copy files and directories. mv: Move or rename files and directories. rm: Remove…

  • How to Install GIT on window OS

    Git Installation on Windows Step 1: Download the git “https://git-scm.com/downloads” & Choose the 64/32 bit version. After the file is  downloaded, install it in the system. Step 2: Check the Git version: $git –version Step 3: For any help, use the following command: $git help config Another way to use the same command is as follows: $ git config –help…

  • Difference between GIT and GitHub

    Difference between GIT & GIT Hub Git and GitHub are not the same thing.  Git is a version control system that lets you manage and keep track of your source code history.  Git is a distributed version control system for tracking changes in source code during software development. It is designed for coordinating work among programmers,…