Test Menu

Your Automation Source code add into GitHub, Below Steps Its Easy to upload your code with GitHub

 

Adding an existing project to GitHub using the command line

  1. Create a new repository on GitHub. You can also add a gitignore file, a readme, and a license if you want to add.
  2.  Open Git Bash
  3. Select the current working directory to your local project.
  4. Initialize the local directory as a Git repository with below command.
    git init
  5. Adding the files to your new local repository. This stages them for the first commit.
    git add .
  6.  Commit the files that you’ve staged in your local repository.
    git commit -m "initial commit"
  7.  Copy the HTTPS URL of your newly created repo
  8. Open the Command prompt, add the URL for the remote repository where your local repository will be pushed.

    git remote add origin remote repository URL


    git remote -v
  9.  Push the new changes in your local repository to GitHub.

    git push -f origin master

After follow above steps your code will be available in GitHub.

1 comment:

SQL Queries For Interview Preparation

1.   SQL Query for Retrieving Tables This query can be run to retrieve the list of tables present in a database where the database is “My_Sc...