Created
August 22, 2020 22:23
-
-
Save CarlFK/e1ea386053ec25b612270b9aa2737a07 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
carl@twist:~/src/evezor/Edge_Boards/poc$ git remote -v | |
carlfk [email protected]:CarlFK/Edge_Boards.git (fetch) | |
carlfk [email protected]:CarlFK/Edge_Boards.git (push) | |
origin [email protected]:evezor/Edge_Boards.git (fetch) | |
origin [email protected]:evezor/Edge_Boards.git (push) | |
carl@twist:~/src/evezor/Edge_Boards/poc$ git branch | |
feature/glossary | |
master | |
* poc/v1 | |
carl@twist:~/src/evezor/Edge_Boards/poc$ git fetch origin poc | |
remote: Enumerating objects: 1, done. | |
remote: Counting objects: 100% (1/1), done. | |
remote: Total 1 (delta 0), reused 0 (delta 0), pack-reused 0 | |
Unpacking objects: 100% (1/1), done. | |
From github.com:evezor/Edge_Boards | |
* branch poc -> FETCH_HEAD | |
330e507..8ad8466 poc -> origin/poc | |
carl@twist:~/src/evezor/Edge_Boards/poc$ git diff ocan.py | |
diff --git a/poc/ocan.py b/poc/ocan.py | |
... | |
+from collections import namedtuple | |
carl@twist:~/src/evezor/Edge_Boards/poc$ git commit ocan.py -m "ocan now packs and unpacks can_id." | |
[poc/v1 b0b5ce0] ocan now packs and unpacks can_id. | |
1 file changed, 22 insertions(+), 4 deletions(-) | |
carl@twist:~/src/evezor/Edge_Boards/poc$ git commit board?.py -m "speed tests send and recieve packed messages" | |
[poc/v1 6f3bafd] speed tests send and recieve packed messages | |
2 files changed, 9 insertions(+), 19 deletions(-) | |
carl@twist:~/src/evezor/Edge_Boards/poc$ git push origin origin/poc | |
Total 0 (delta 0), reused 0 (delta 0) | |
To github.com:evezor/Edge_Boards.git | |
330e507..8ad8466 origin/poc -> origin/poc | |
carl@twist:~/src/evezor/Edge_Boards/poc$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment