Step 1: From your home directory in CentOS , type cd /usr/src Step 2: Copy these commands to download the git tar sudo wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.29.0.tar.gz sudo tar xzf git-2.29.0.tar.gz Step 3: Install the following dependencies : sudo yum -y install gcc sudo yum install --assumeyes openssl-devel sudo yum install libcurl-devel yum install expat-devel Step 4: cd git-2.29.0 sudo make prefix=/usr/local/git all sudo make prefix=/usr/local/git install Step 5: Open your /etc/bashrc and add the following export PATH=/usr/local/git/bin:$PATH Then type source /etc/bashrc Step 6: Check if git is installed by typing and checking git version horray check git version
HOW TO MAKE A GIT REPO INTO AN ORDINARY FOLDER 1) Simple : Remove the .git file inside the folder 2) Use ls -a to view the hidden files 3) Remove it using sudo rm -rf .git 4) Hooray, it's no more a git repo. Time to Smile HOW TO MAKE A FOLDER INTO A GIT REPO FROM COMMAND PROMPT 0)Create a repo in your github page : Top right corner "+". Give name, public/private, create a README file and give create. Check under "CODE" - the place where we clone the project check for the url under https ending with .git 1)In the command prompt, go to the directory for which you want to create the repo For Example : If Sample is the repo, let your command prompt be Sample$ 2) Use the command git init 3) Type the command git add . 4) Type the command git commit -m "first commit" 5) Type the command git remote add origin your_git_url_that_you_...
In Go, the entry point for any application is the main function in the main package. Program execution begins by initializing the main package and then invoking the function main. Your application must have a package named main and declare a function main that takes no arguments and returns no value. package main func main () { … }
Comments
Post a Comment