Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

PLPBasicGitAssignment

1.Created a new GitHub repository named "PLPBasicGitAssignment". 2. Initialized the repository with a README file. 3. Created a local folder named "PLPBasicGitAssignment". 4. Opened terminal and went to the local disk D.

cd /d/PLPBasicGitAssignment

  1. Initialized a new Git repository. git init

  2. Linked the local repository to the GitHub repository.

    git remote add origin https://github.com/lendria/PLPBasicGitAssignment.git

  3. Created a new file named hello.txt with the content "Hello, Git!".

  4. Staged the file.

    git add hello.txt

  5. Committed the changes with a message.

    git commit -m "Add hello.txt with a greeting"

  6. Pushed the changes to GitHub. git push -u origin main

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors