Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Notes
[email protected]@ip-10-10-47-119:
$ git clone [email protected]:dplu999/hello.git$ git statusCloning into 'hello'...
remote: Enumerating objects: 38, done.
remote: Counting objects: 100% (7/7), done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 38 (delta 0), reused 1 (delta 0), pack-reused 31 (from 1)
Receiving objects: 100% (38/38), 9.92 KiB | 230.00 KiB/s, done.
Resolving deltas: 100% (8/8), done.
[email protected]@ip-10-10-47-119:
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[email protected]@ip-10-10-47-119:
$ ls$ cd scratchhello hello.py proj scratch shared-data user-data
[email protected]@ip-10-10-47-119:
[email protected]@ip-10-10-47-119:
/scratch$ ls/scratch$ cd hello_worldhello_world
[email protected]@ip-10-10-47-119:
[email protected]@ip-10-10-47-119:
/scratch/hello_world$ git clone [email protected]:dplu999/hello.git/scratch/hello_world$ branch -aCloning into 'hello'...
remote: Enumerating objects: 38, done.
remote: Counting objects: 100% (7/7), done.
remote: Compressing objects: 100% (6/6), done.
Receiving objects: 100% (38/38), 9.92 KiB | 9.92 MiB/s, done.
Resolving deltas: 100% (8/8), done.
remote: Total 38 (delta 0), reused 1 (delta 0), pack-reused 31 (from 1)
[email protected]@ip-10-10-47-119:
Command 'branch' not found, but can be installed with:
apt install rheolef
Please ask your administrator.
[email protected]@ip-10-10-47-119:~/scratch/hello_world$ git branch -a
github_edits
main
remotes/origin/HEAD -> origin/main
remotes/origin/github_edits
remotes/origin/local_edits
remotes/origin/main
[email protected]@ip-10-10-47-119:
/scratch/hello_world$ ls/scratch/hello_world$ cd helloREADME.md hello hello.py
[email protected]@ip-10-10-47-119:
[email protected]@ip-10-10-47-119:
/scratch/hello_world/hello$ git push --set-upstream origin hello/scratch/hello_world/hello$ lserror: src refspec hello does not match any
error: failed to push some refs to 'github.com:dplu999/hello.git'
[email protected]@ip-10-10-47-119:
README.md
[email protected]@ip-10-10-47-119:
/scratch/hello_world/hello$ ls -a/scratch/hello_world/hello$ git status. .. .git README.md
[email protected]@ip-10-10-47-119:
On branch main
Your branch is up to date with 'origin/main'.
nothing to commit, working tree clean
[email protected]@ip-10-10-47-119:
/scratch/hello_world/hello$ cd../scratch/hello_world/hello$ cd ..cd..: command not found
[email protected]@ip-10-10-47-119:
[email protected]@ip-10-10-47-119:
/scratch/hello_world$ cd ../scratch$ git clone [email protected]:dplu999/hello.git[email protected]@ip-10-10-47-119:
Cloning into 'hello'...
Warning: Permanently added the ECDSA host key for IP address '140.82.114.3' to the list of known hosts.
remote: Enumerating objects: 38, done.
remote: Counting objects: 100% (7/7), done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 38 (delta 0), reused 1 (delta 0), pack-reused 31 (from 1)
Receiving objects: 100% (38/38), 9.92 KiB | 9.92 MiB/s, done.
Resolving deltas: 100% (8/8), done.
[email protected]@ip-10-10-47-119:
/scratch$ cd hello/scratch/hello$ ls[email protected]@ip-10-10-47-119:
README.md
[email protected]@ip-10-10-47-119:
/scratch/hello$ git branch NF/scratch/hello$ git status[email protected]@ip-10-10-47-119:
On branch main
Your branch is up to date with 'origin/main'.
nothing to commit, working tree clean
[email protected]@ip-10-10-47-119:~/scratch/hello$ git branch -a
NF
remotes/origin/Feature-Branch
remotes/origin/HEAD -> origin/main
remotes/origin/main
[email protected]@ip-10-10-47-119:
/scratch/hello$ git switch NF/scratch/hello$ git push --set-upstream origin helloSwitched to branch 'NF'
[email protected]@ip-10-10-47-119:
error: src refspec hello does not match any
error: failed to push some refs to 'github.com:dplu999/hello.git'
[email protected]@ip-10-10-47-119:~/scratch/hello$ git push --set-upstream origin NF
Warning: Permanently added the ECDSA host key for IP address '140.82.112.3' to the list of known hosts.
Total 0 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)
remote:
remote: Create a pull request for 'NF' on GitHub by visiting:
remote: https://github.com/dplu999/hello/pull/new/NF
remote:
To github.com:dplu999/hello.git
branch 'NF' set up to track 'origin/NF'.
[email protected]@ip-10-10-47-119:
/scratch/hello$ ls/scratch/hello$ nano REAMDME.mdREADME.md
[email protected]@ip-10-10-47-119:
[email protected]@ip-10-10-47-119:
/scratch/hello$ git add READEME.md/scratch/hello$ lsfatal: pathspec 'READEME.md' did not match any files
[email protected]@ip-10-10-47-119:
README.md REAMDME.md
[email protected]@ip-10-10-47-119:
/scratch/hello$ nano README.md/scratch/hello$ git commit README.md[email protected]@ip-10-10-47-119:
Aborting commit due to empty commit message.
[email protected]@ip-10-10-47-119:
/scratch/hello$ git push --set-upstream origin NF/scratch/hello$ git add README.mdbranch 'NF' set up to track 'origin/NF'.
Everything up-to-date
[email protected]@ip-10-10-47-119:
[email protected]@ip-10-10-47-119:
/scratch/hello$ git push --set-upstream origin NF/scratch/hello$ git push --set-upstream origin NFbranch 'NF' set up to track 'origin/NF'.
Everything up-to-date
[email protected]@ip-10-10-47-119:
branch 'NF' set up to track 'origin/NF'.
Everything up-to-date
[email protected]@ip-10-10-47-119:
/scratch/hello$ ls/scratch/hello$ git branch -aREADME.md REAMDME.md
[email protected]@ip-10-10-47-119:
main
remotes/origin/Feature-Branch
remotes/origin/HEAD -> origin/main
remotes/origin/NF
remotes/origin/main
[email protected]@ip-10-10-47-119:
/scratch/hello$ ls/scratch/hello$ git add README.mdREADME.md REAMDME.md
[email protected]@ip-10-10-47-119:
[email protected]@ip-10-10-47-119:~/scratch/hello$ git status
On branch NF
Your branch is up to date with 'origin/NF'.
Changes to be committed:
(use "git restore --staged ..." to unstage)
modified: README.md
Untracked files:
(use "git add ..." to include in what will be committed)
REAMDME.md
[email protected]@ip-10-10-47-119:
/scratch/hello$ git commit README.md/scratch/hello$ git commit -m "ffasf"Aborting commit due to empty commit message.
[email protected]@ip-10-10-47-119:
[NF d1890f6] ffasf
1 file changed, 1 insertion(+)
[email protected]@ip-10-10-47-119:
/scratch/hello$ git push --set-upstream origin NF/scratch/hello$Warning: Permanently added the ECDSA host key for IP address '140.82.112.4' to the list of known hosts.
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 16 threads
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 269 bytes | 269.00 KiB/s, done.
Total 3 (delta 1), reused 0 (delta 0), pack-reused 0 (from 0)
remote: Resolving deltas: 100% (1/1), completed with 1 local object.
To github.com:dplu999/hello.git
b378e03..d1890f6 NF -> NF
branch 'NF' set up to track 'origin/NF'.
[email protected]@ip-10-10-47-119: