Posted in git
552
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
226
This Month
1167
This Year
3403

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...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

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
Why did Odeo fail? Lack of Focus
Evan Williams, co-founder of Twitter and Blogger, failed with his first startup, Odeo. What went wrong with Odeo? Williams' first startup was a podcasting company that failed due to a lack of focus. He learned that it's important to stay focused and adapt to changes in the market.
Odeo
Random CSS Property

conic-gradient()

The conic-gradient() CSS function creates an image consisting of a gradient with color transitions rotated around a center point (rather than radiating from the center). Example conic gradients include pie charts and color wheels. The result of the conic-gradient() function is an object of the <gradient> data type, which is a special kind of <image>.
conic-gradient() css reference