Showing posts with label Add. Show all posts
Showing posts with label Add. Show all posts

24 July 2023

Adding locally hosted code to GitHub

Adding locally hosted code to GitHub


====================================
Adding Locally Hosted Code to GitHub
====================================


Initializing a Git repository
=============================

1. Open Terminal.

2. Navigate to the root directory of your project.

3. Initialize the local directory as a Git repository. By default, the initial branch is called main.

   If you’re using Git 2.28.0 or a later version, you can set the name of the default branch using -b. ::

       $ git init -b main

4. Add the files in your new local repository. This stages them for the first
commit. ::

       # Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
       $ git add .


5. Commit the files that you've staged in your local repository. ::

       # Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.
       $ git commit -m "First commit"


Importing a Git repository with the command line
================================================

1. Create a new repository on GitHub.com. To avoid errors, do not initialize the new repository with README, license, or gitignore files. You can add these files after your project has been pushed to GitHub. For more information, see "Creating a new repository."

2. At the top of your repository on GitHub.com's Quick Setup page, click to copy the remote repository URL.

3. Open Terminal.

4. Change the current working directory to your local project.

5. Add the URL for the remote repository where your local repository will be pushed. ::

       # Sets the new remote
       $ git remote add origin <REMOTE_URL>
   
       # Verifies the new remote URL
       $ git remote -v

6. Push the changes in your local repository to GitHub.com. ::

       # Pushes the changes in your local repository up to the remote repository you specified as the origin
       $ git push origin main

04 April 2023

Can not connect sftp - "Warning: Permanently added to the list of known hosts"

https://stackoverflow.com/questions/9299651/git-says-warning-permanently-added-to-the-list-of-known-hosts

Create a ~/.ssh/config file and insert the line:

UserKnownHostsFile ~/.ssh/known_hosts

You will then see the message the next time you access Github (or any other sftp server), but after that you'll not see it anymore because the host is added to the known_hosts file. This fixes the issue, rather than just hiding the log message.

09 July 2021

How to get lost files back resulting from running git add and git restore -s@ -SW?

 How to get lost files back resulting from running git add and git restore -s@ -SW?


Problem

suppose you ran

$ git add .

then you ran

$ git status

and saw that you have added some files which you did not want to add. 

(You did not run 

$ git commit

)

then you wanted to remove them from the index.

In haste, you ran 

$ git restore -s@ -SW

resulting in those files are gone away from your working tree (resulted from -W).

You want to get them back.

Solution:

Run

$ git fsck --cach --no-reflogs --lost-found --unreachable head

You will get a list of SHA1, which point to your lost files.

Then run

$ git show SHA1 > name_of_lost_file

one by one, every lost file will now be in your current work directory!


26 June 2017

Can not add local users

Can not add local users?

Solution:

Press 'Windows' + 'R'.
Enter command: control userpasswords2