Posted in git
6761
3:23 am, April 22, 2022
 

git basics - git init, git commit, git all, git *

create a new repository

git init

the following code can be typed in a terminal window, once you have installed git for your OS.

This will create a directory called git-test assuming you already have a directory called code under your main directory.

cd code
mkdir git-test
cd git-test
git init

the git init will create a new git repository

 

add and commit

git add filename

you can add a single file with git add filename.php

git add *

add all the files with git add *

run these commands in the git-test directory

 

Create a new file and add it

this will add a new file called index and add it and then commit it to the local git repository.

nano index.php

type in hello world! or whatever text you want in your file then type

git add index.php

then to commit the change type in

git commit -m "added the file index and some text"

Now we have created the index.php added some text into it and commit it to our local copy.

Pushing changes to a remote server

git push origin master

or

git remote add origin <server>

then go off to git hub and create a new repository which will then give you the key to add the origin to your repo.

git remote add origin git@github.com:...

git branch -M main
git push -u origin main

You will also need to add the ssh key to allow pushing to this repo

otherwise you will get the following message

git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

 

 

👨‍💻

External Link for git basics - git init, git commit, git all, git *

View Statistics
This Week
204
This Month
689
This Year
904

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
Our brains are wired to find things we are looking for - if your always cynical or waiting for things to go wrong, then your life will reflect that. On the other hand, having a positive outlook on life will bring you joy and provide you with inspiration when you least expect it ☀️🍉🌴
Unknown
Random CSS Property

cursor

The cursor CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element.
cursor css reference