From f5889bdc3ff2e96ee5921e34c83cf41c7737a06a Mon Sep 17 00:00:00 2001 From: ernesto Date: Fri, 19 Jul 2024 23:10:49 -0400 Subject: [PATCH 01/22] Add end line period, additional # for the Example title, and additional examples Add a simple README.md file including an example use case --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..97b3d10e --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +Rearrange +========= + +Rearrange +========= + +This module is used for rearranging names. +Turns "LastName, FirstName" into "Firstname LastName". + +## Example + +* Calling `rearrange_name("Turing, Alan")` will return `"Alan Turing"` +* Calling `rearrange_name("Hopper, Grace M.")` will return `"Grace M. Hopper"` +* Calling `rearrange_name("Voltaire")` will return `"Voltaire"` From 9c539756fa3442bde5844a4e94cd54f5f7e2f230 Mon Sep 17 00:00:00 2001 From: ernesto Date: Sun, 22 Sep 2024 12:00:09 -0400 Subject: [PATCH 02/22] Added a file to test merge to the rearrange_CANDIDATE branch' --- the_history_till_now.txt | 500 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 500 insertions(+) create mode 100644 the_history_till_now.txt diff --git a/the_history_till_now.txt b/the_history_till_now.txt new file mode 100644 index 00000000..d05d5206 --- /dev/null +++ b/the_history_till_now.txt @@ -0,0 +1,500 @@ + 98 git lst -2 + 99 git lst aa43020c5 + 100 clear + 101 git ol + 102 git logd + 103 git lst 66fc689 -1 + 104 git lst 66fc689 -1 | grep "changed" + 105 git lst 66fc689 -1 | grep "changed" | tail + 106 git lst 66fc689 -1 | tail + 107 git lst 66fc689 -1 + 108 ls -l + 109 ls -l | tail + 110 ls -l | tail -2 + 111 git lst 66fc689 -1 | tail -1 + 112 git logd + 113 git lst 66fc689 -1 | tail -1 + 114 git lst 66fc689 -1 + 115 git lst 66fc689 + 116 clear + 117 git st + 118 clear + 119 git logd + 120 git lst 66fc689 + 121 clear + 122 git st + 123 clear + 124 git logd + 125 git lst 66fc689 -1 + 126 git lst 66fc689 -1 | tail -1 + 127 git lst 66fc689 -1 | tail -2 + 128 git lst HEAD -1 + 129 git lst HEAD -1 > git_lst_-1.txt + 130 git add . + 131 git ci -m "Added a file with the output of git lst HEAD -1" + 132 git lst HEAD -1 + 133 cat git_lst_-1.txt + 134 git lst HEAD -1 | tail -1 + 135 git lol + 136 exit + 137 pwd + 138 cd /c/My_Study/Git/MIT-Git/missing-semester + 139 ls -l | tail -2 + 140 ls -l + 141 git st + 142 git st -s + 143 git config --global alias.st status + 144 git config --global alias.sts "status -s" + 145 git config -l | grep alias + 146 git sts + 147 git ol + 148 git ol -5 + 149 git ol -7 + 150 git ol -s + 151 git ol --abrev-commit -7 + 152 git ol --abbrev-commit -7 + 153 git log -2 + 154 git logd + 155 it ol --abbrev-commit - + 156 git logg + 157 git log --graph + 158 git config -l | grep alias + 159 git config --global alias.logg "log --graph" + 160 git config --global alias.logabc "log --abbrev-commit" + 161 git logabc + 162 git config --global alias.olabc "log --pretty=oneline --abbrev-commit" + 163 git olabc + 164 git olabc -5 + 165 git config --global --unset alias.logabc + 166 git config --global alias.logabb "log --abbrev-commit" + 167 git config --global --unset alias.olabc + 168 git config --global alias.olabb "log --pretty=oneline --abbrev-commit" + 169 git olabb -3 + 170 git olb -5 + 171 git ol --branches -5 + 172 git ol --branches + 173 git olbg -10 + 174 git config --global alias.olbg "log --oneline --branches --decorate --graph" + 175 git olbg -10 + 176 git config --global alias.olb "log --pretty=oneline --branches" + 177 git olb -5 + 178 git olb + 179 git config --global --unset alias.olb + 180 git olabb + 181 git olbg -20 + 182 git br + 183 git co BEFORE_test_copy + 184 git log hello.txt + 185 git olbg -20 + 186 git sts + 187 git diff hello.txt + 188 git diff hello.txt --cached + 189 git diff --cached hello.txt + 190 cat hello.txt + 191 git st + 192 git ci -m " new version of hello.txt to test git st -s" + 193 git olbg -20 + 194 git co master + 195 git st + 196 git merge BEFORE_test_copy + 197 git st + 198 git olbg -20 + 199 git show -p + 200 git show f075800b0ae + 201 git cat f075800b0ae + 202 git cat-file -t f075800 + 203 git cat-file f075800 + 204 git cat-file -p f075800 + 205 git cat-file -p 158597d + 206 git cat-file 7315e9602 + 207 git cat-file -p 7315e9602 + 208 git config --global alias.cft "cat-file -t" + 209 git config --global alias.cfp "cat-file -p" + 210 git cfp 7315e9602 + 211 git cft f075800 + 212 git ol --abbrev_commit -5 + 213 git ol --abbrev-commit -5 + 214 git log --abbrev-commit -5 + 215 git log -s --abbrev-commit -5 + 216 git log -s -5 + 217 clear + 218 git remote + 219 git branch + 220 git branch -vv + 221 git st + 222 git st + 223 git add . + 224 git st + 225 git restore --staged hello_again.txt + 226 git st + 227 git checkout hello_again.txt + 228 git st + 229 ls -ltr + 230 cat hello_again.txt + 231 exit + 232 cd /C/cygwin64/home/kuper/IT_Auto + 233 ls -l + 234 cd health-check + 235 git st + 236 gitk & + 237 ps -ef | grep 1521 + 238 git remote show origin + 239 git remote show origin + 240 git ol5 + 241 git br + 242 git br origin + 243 git br + 244 git br -d origin + 245 git remote -h + 246 git remote -v + 247 git st + 248 clear + 249 git remote show origin + 250 git br + 251 git remote -v + 252 git fetch + 253 git st + 254 ls -ltr + 255 git ol5 + 256 git olgb origin/master + 257 git olgb origin/main + 258 git log origin/main + 259 git log -abbrev origin/main + 260 git log --abbrev origin/main + 261 clear + 262 git log origin/main + 263 git logabb origin/main + 264 git st + 265 git br + 266 git merge origin/main + 267 git st + 268 git olgb + 269 git br -a + 270 git br -r + 271 ls -la + 272 cd .git + 273 ls -la + 274 cd refs + 275 ls -la + 276 cd remotes + 277 ls -la + 278 cd origina + 279 cd origin + 280 ls -l + 281 cd /C/cygwin64/home/kuper/IT_Auto/ + 282 ls -l + 283 cd Python + 284 ls -la + 285 cd .git + 286 ls -la + 287 cd refs + 288 ls -la + 289 clear + 290 git br + 291 git co shapiro + 292 cd .. + 293 cd .. + 294 dir + 295 ls -l + 296 cd .. + 297 ls -l + 298 cd health-check/ + 299 git br + 300 git co shapiro + 301 git checkout shapiro + 302 git co -b shapiro + 303 git br + 304 git co main + 305 git br -d shapiro + 306 git br + 307 exit + 308 cd /C/cygwin64/home/kuper/IT_Auto + 309 ls -l + 310 cd health-check + 311 git st + 312 git br + 313 git br -r + 314 ls -ltr + 315 git st + 316 git log -r + 317 git log --remote=origin + 318 git log --remotes=origin + 319 git olgb + 320 git log --remotes=origin + 321 clear + 322 git log --remotes=origin + 323 git olgb --all + 324 ls -l + 325 vi README.md + 326 git st + 327 clear + 328 pwd + 329 ls-ltr + 330 clear + 331 pwd + 332 ls -ltr + 333 git st + 334 git add -p README.md + 335 git st + 336 git ci -m "Added local changes to README.md" + 337 git olgb --all + 338 git remote -v + 339 git pull + 340 git st + 341 git olgb + 342 git olgb --all + 343 vi README.md + 344 vi README.md + 345 git olgb + 346 git olgb --all + 347 vi README.md + 348 clear + 349 git st + 350 cat README.md + 351 clear + 352 git st + 353 git olgb -all + 354 git olgb --all + 355 git pull + 356 clear + 357 git st + 358 git pull + 359 git add README.md + 360 git st + 361 git ci -m "Merge after resolving the local and remot merge issue" + 362 git olgb --all + 363 clear + 364 git remote -v + 365 git push + 366 git olgb --all + 367 clear + 368 git co -b refactor + 369 git br + 370 git co main + 371 git br -d refactor + 372 git br + 373 git st + 374 git add all* + 375 git st + 376 git ci -m "Added all_checks.py to the repo" + 377 git olgb --al + 378 git olgb --all + 379 git push + 380 git olgb --all + 381 clear + 382 git br + 383 git br -d refactor + 384 [200~$ git st + 385 On branch main + 386 Your branch is up to date with 'origin/main'. + 387 Untracked files: + 388 (use "git add ..." to include in what will be committed) + 389 all_checks.py + 390 check_free_space.py + 391 cpu_usage.py + 392 nothing added to commit but untracked files present (use "git add" to track) + 393 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) + 394 $ git add all* + 395 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) + 396 $ git st + 397 On branch main + 398 Your branch is up to date with 'origin/main'. + 399 Changes to be committed: + 400 (use "git restore --staged ..." to unstage) + 401 new file: all_checks.py + 402 Untracked files: + 403 (use "git add ..." to include in what will be committed) + 404 check_free_space.py + 405 cpu_usage.py + 406 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) + 407 $ git ci -m "Added all_checks.py to the repo" + 408 [main 538d49e] Added all_checks.py to the repo + 409 1 file changed, 40 insertions(+) + 410 create mode 100644 all_checks.py + 411 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) + 412 $ git olgb --al + 413 fatal: unrecognized argument: --al + 414 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) + 415 $ git olgb --all + 416 * 538d49e (HEAD -> main) Added all_checks.py to the repo + 417 * 25461f1 (origin/main, origin/HEAD) Merge after resolving the local and remot merge issue + 418 || * a787477 Update README.md + 419 * | b0f25ed Added local changes to README.md + 420 |/ + 421 * 70ea584 Update README.md + 422 * 8fb2541 Add one more line to the README.md + 423 * d9a64ee Initial commit + 424 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) + 425 $ git push + 426 Enumerating objects: 4, done. + 427 Counting objects: 100% (4/4), done. + 428 Delta compression using up to 8 threads + 429 Compressing objects: 100% (3/3), done. + 430 Writing objects: 100% (3/3), 745 bytes | 372.00 KiB/s, done. + 431 Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0) + 432 To https://github.com/ernestok23/health-check.git + 433 clear + 434 git br -b refactor + 435 git co -b refactor + 436 git br + 437 ls -ltr + 438 vi all_checks.py + 439 xxxgit commit -a -m 'Create wrapper function for check_disk_full' + 440 git st + 441 git add all* + 442 git st + 443 git commit -m 'Create wrapper function for check_disk_full' + 444 git olbg --all + 445 git olgb --all + 446 clear + 447 git st + 448 git add all* + 449 git st + 450 git ci -m 'Iterate over a list of checks and messages to avoid code duplication' + 451 git olgb --all + 452 git add all* + 453 git st + 454 git ci -m 'Allow printing more than one error message' + 455 git olgb --all + 456 git push -u origin refactor + 457 git olgb --all + 458 git br main + 459 git br + 460 git diff main + 461 clear + 462 git br + 463 git co main + 464 git olgb --all -8 + 465 git br + 466 git pull + 467 git olgb --all -8 + 468 ls -ltr + 469 vi README.md + 470 git add READ* + 471 git ci -m "For a change on main to test rebase" + 472 git olgb --all -8 + 473 git ci -ammend + 474 git ci --ammend + 475 git ci --amend + 476 git olgb --all + 477 git co refactor + 478 git br + 479 git olgb --all + 480 git rebase master + 481 git rebase main + 482 git olgb --all + 483 git co main + 484 git br + 485 git olgb --all + 486 git merge refactor + 487 git olgb --all + 488 git br + 489 git push + 490 git olgb --all + 491 git br --all + 492 git push --delete origin refactor + 493 git br - refactor + 494 git br -d refactor + 495 git br --all + 496 git push + 497 CLEAR + 498 git st + 499 git add all* + 500 git st + 501 git ci -m "Add a simple network connectivity check" + 502 git olgb --all + 503 git fetch + 504 git fetch + 505 clear + 506 git olgb --all + 507 git fetch + 508 git olgb --all + 509 clear + 510 git fetch + 511 git olgb --all + 512 clear + 513 git br + 514 git br --all + 515 git rebase origin/main + 516 ls -l + 517 git st + 518 git add health_checks.py + 519 git st + 520 clear + 521 git rebase --continue + 522 git br --all + 523 git br --all + 524 git olgb --all + 525 git remote -v + 526 git push + 527 git olgb --all + 528 pwd + 529 clear + 530 git br + 531 git olgb + 532 git remote -v + 533 pwd + 534 cd .. + 535 pwd + 536 ls -l + 537 git clone https://github.com/ernestok23/rearrange.git + 538 ls -ltr + 539 cd rearrange + 540 ls -latr + 541 git olgb + 542 git remote -v + 543 git co -b add-readme + 544 git ber + 545 git br + 546 ls -ltr + 547 git add R* + 548 git st + 549 git ci -m 'Add a simple README.md file' + 550 git olgb -all + 551 git olgb + 552 git push -u origin add-readme + 553 git olgb + 554 git olgb + 555 git br --all + 556 git olgb remotes/origin/add-readme + 557 git olgb remotes/origin/main + 558 clear + 559 git config + 560 git config -l + 561 cd .. + 562 cd health-checks + 563 dir + 564 cd health-check + 565 git config -l + 566 cd ../rearrange + 567 git br + 568 git olgb --all + 569 git co main + 570 git olgb --all + 571 clear + 572 git br + 573 git br --all + 574 git remote -v + 575 git remote show origin + 576 git br + 577 git rev-list + 578 git rev-list --all + 579 git rev-list --branches + 580 git rev-list --objects + 581 git rev-list --objects --all + 582 ls -l + 583 git st + 584 git rev-list --objects -all + 585 git rev-list --objects --all + 586 git rev-list + 587 git olgb + 588 git br + 589 cd .. + 590 cd health-check + 591 git olgb + 592 cd ../rearrange + 593 history + 594 git olgb + 595 git co main + 596 git br + 597 history > the_history_till_now.txt From 13c5046dfd829490df9404a966a038139dfac4a1 Mon Sep 17 00:00:00 2001 From: ernesto Date: Sun, 22 Sep 2024 12:28:29 -0400 Subject: [PATCH 03/22] Add fix_from_CANDIDATE.txt on the rearrange_CANDIDATE branch --- fix_from_CANDIDATE.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 fix_from_CANDIDATE.txt diff --git a/fix_from_CANDIDATE.txt b/fix_from_CANDIDATE.txt new file mode 100644 index 00000000..c139571d --- /dev/null +++ b/fix_from_CANDIDATE.txt @@ -0,0 +1,2 @@ +fix_from_CANDIDATE.txt + From ac36db356f5b60456ebfdb1255ab532a0acac2a1 Mon Sep 17 00:00:00 2001 From: ernesto Date: Sun, 22 Sep 2024 12:30:15 -0400 Subject: [PATCH 04/22] Add new_file_on_MAIN.txt on MAIN --- new_file_on_MAIN.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 new_file_on_MAIN.txt diff --git a/new_file_on_MAIN.txt b/new_file_on_MAIN.txt new file mode 100644 index 00000000..0c930304 --- /dev/null +++ b/new_file_on_MAIN.txt @@ -0,0 +1,2 @@ +new_file_on_MAIN.txt + From 628943707d67c09e9be1e8c6be3f3e3d0267cccb Mon Sep 17 00:00:00 2001 From: ernesto Date: Sun, 13 Oct 2024 22:40:51 -0400 Subject: [PATCH 05/22] Added tellme.sh --- tellme.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tellme.sh diff --git a/tellme.sh b/tellme.sh new file mode 100644 index 00000000..7a6b06d0 --- /dev/null +++ b/tellme.sh @@ -0,0 +1,5 @@ +echo $USERNAME +pwd +ls +echo san sefini + From b9109c69cb82f9b15ed6b0a43c134137392c5c23 Mon Sep 17 00:00:00 2001 From: ernesto Date: Sun, 13 Oct 2024 22:50:55 -0400 Subject: [PATCH 06/22] Capitalize San Sefini --- tellme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tellme.sh b/tellme.sh index 7a6b06d0..ef571db3 100644 --- a/tellme.sh +++ b/tellme.sh @@ -1,5 +1,5 @@ echo $USERNAME pwd ls -echo san sefini +echo San Sefini macho From b00d59eb592c2c79460c67953bf6e65dad48ada8 Mon Sep 17 00:00:00 2001 From: ernesto Date: Sun, 13 Oct 2024 23:23:25 -0400 Subject: [PATCH 07/22] Deleted the_history_till_now.txt, use git add --update --- the_history_till_now.txt | 500 --------------------------------------- 1 file changed, 500 deletions(-) delete mode 100644 the_history_till_now.txt diff --git a/the_history_till_now.txt b/the_history_till_now.txt deleted file mode 100644 index d05d5206..00000000 --- a/the_history_till_now.txt +++ /dev/null @@ -1,500 +0,0 @@ - 98 git lst -2 - 99 git lst aa43020c5 - 100 clear - 101 git ol - 102 git logd - 103 git lst 66fc689 -1 - 104 git lst 66fc689 -1 | grep "changed" - 105 git lst 66fc689 -1 | grep "changed" | tail - 106 git lst 66fc689 -1 | tail - 107 git lst 66fc689 -1 - 108 ls -l - 109 ls -l | tail - 110 ls -l | tail -2 - 111 git lst 66fc689 -1 | tail -1 - 112 git logd - 113 git lst 66fc689 -1 | tail -1 - 114 git lst 66fc689 -1 - 115 git lst 66fc689 - 116 clear - 117 git st - 118 clear - 119 git logd - 120 git lst 66fc689 - 121 clear - 122 git st - 123 clear - 124 git logd - 125 git lst 66fc689 -1 - 126 git lst 66fc689 -1 | tail -1 - 127 git lst 66fc689 -1 | tail -2 - 128 git lst HEAD -1 - 129 git lst HEAD -1 > git_lst_-1.txt - 130 git add . - 131 git ci -m "Added a file with the output of git lst HEAD -1" - 132 git lst HEAD -1 - 133 cat git_lst_-1.txt - 134 git lst HEAD -1 | tail -1 - 135 git lol - 136 exit - 137 pwd - 138 cd /c/My_Study/Git/MIT-Git/missing-semester - 139 ls -l | tail -2 - 140 ls -l - 141 git st - 142 git st -s - 143 git config --global alias.st status - 144 git config --global alias.sts "status -s" - 145 git config -l | grep alias - 146 git sts - 147 git ol - 148 git ol -5 - 149 git ol -7 - 150 git ol -s - 151 git ol --abrev-commit -7 - 152 git ol --abbrev-commit -7 - 153 git log -2 - 154 git logd - 155 it ol --abbrev-commit - - 156 git logg - 157 git log --graph - 158 git config -l | grep alias - 159 git config --global alias.logg "log --graph" - 160 git config --global alias.logabc "log --abbrev-commit" - 161 git logabc - 162 git config --global alias.olabc "log --pretty=oneline --abbrev-commit" - 163 git olabc - 164 git olabc -5 - 165 git config --global --unset alias.logabc - 166 git config --global alias.logabb "log --abbrev-commit" - 167 git config --global --unset alias.olabc - 168 git config --global alias.olabb "log --pretty=oneline --abbrev-commit" - 169 git olabb -3 - 170 git olb -5 - 171 git ol --branches -5 - 172 git ol --branches - 173 git olbg -10 - 174 git config --global alias.olbg "log --oneline --branches --decorate --graph" - 175 git olbg -10 - 176 git config --global alias.olb "log --pretty=oneline --branches" - 177 git olb -5 - 178 git olb - 179 git config --global --unset alias.olb - 180 git olabb - 181 git olbg -20 - 182 git br - 183 git co BEFORE_test_copy - 184 git log hello.txt - 185 git olbg -20 - 186 git sts - 187 git diff hello.txt - 188 git diff hello.txt --cached - 189 git diff --cached hello.txt - 190 cat hello.txt - 191 git st - 192 git ci -m " new version of hello.txt to test git st -s" - 193 git olbg -20 - 194 git co master - 195 git st - 196 git merge BEFORE_test_copy - 197 git st - 198 git olbg -20 - 199 git show -p - 200 git show f075800b0ae - 201 git cat f075800b0ae - 202 git cat-file -t f075800 - 203 git cat-file f075800 - 204 git cat-file -p f075800 - 205 git cat-file -p 158597d - 206 git cat-file 7315e9602 - 207 git cat-file -p 7315e9602 - 208 git config --global alias.cft "cat-file -t" - 209 git config --global alias.cfp "cat-file -p" - 210 git cfp 7315e9602 - 211 git cft f075800 - 212 git ol --abbrev_commit -5 - 213 git ol --abbrev-commit -5 - 214 git log --abbrev-commit -5 - 215 git log -s --abbrev-commit -5 - 216 git log -s -5 - 217 clear - 218 git remote - 219 git branch - 220 git branch -vv - 221 git st - 222 git st - 223 git add . - 224 git st - 225 git restore --staged hello_again.txt - 226 git st - 227 git checkout hello_again.txt - 228 git st - 229 ls -ltr - 230 cat hello_again.txt - 231 exit - 232 cd /C/cygwin64/home/kuper/IT_Auto - 233 ls -l - 234 cd health-check - 235 git st - 236 gitk & - 237 ps -ef | grep 1521 - 238 git remote show origin - 239 git remote show origin - 240 git ol5 - 241 git br - 242 git br origin - 243 git br - 244 git br -d origin - 245 git remote -h - 246 git remote -v - 247 git st - 248 clear - 249 git remote show origin - 250 git br - 251 git remote -v - 252 git fetch - 253 git st - 254 ls -ltr - 255 git ol5 - 256 git olgb origin/master - 257 git olgb origin/main - 258 git log origin/main - 259 git log -abbrev origin/main - 260 git log --abbrev origin/main - 261 clear - 262 git log origin/main - 263 git logabb origin/main - 264 git st - 265 git br - 266 git merge origin/main - 267 git st - 268 git olgb - 269 git br -a - 270 git br -r - 271 ls -la - 272 cd .git - 273 ls -la - 274 cd refs - 275 ls -la - 276 cd remotes - 277 ls -la - 278 cd origina - 279 cd origin - 280 ls -l - 281 cd /C/cygwin64/home/kuper/IT_Auto/ - 282 ls -l - 283 cd Python - 284 ls -la - 285 cd .git - 286 ls -la - 287 cd refs - 288 ls -la - 289 clear - 290 git br - 291 git co shapiro - 292 cd .. - 293 cd .. - 294 dir - 295 ls -l - 296 cd .. - 297 ls -l - 298 cd health-check/ - 299 git br - 300 git co shapiro - 301 git checkout shapiro - 302 git co -b shapiro - 303 git br - 304 git co main - 305 git br -d shapiro - 306 git br - 307 exit - 308 cd /C/cygwin64/home/kuper/IT_Auto - 309 ls -l - 310 cd health-check - 311 git st - 312 git br - 313 git br -r - 314 ls -ltr - 315 git st - 316 git log -r - 317 git log --remote=origin - 318 git log --remotes=origin - 319 git olgb - 320 git log --remotes=origin - 321 clear - 322 git log --remotes=origin - 323 git olgb --all - 324 ls -l - 325 vi README.md - 326 git st - 327 clear - 328 pwd - 329 ls-ltr - 330 clear - 331 pwd - 332 ls -ltr - 333 git st - 334 git add -p README.md - 335 git st - 336 git ci -m "Added local changes to README.md" - 337 git olgb --all - 338 git remote -v - 339 git pull - 340 git st - 341 git olgb - 342 git olgb --all - 343 vi README.md - 344 vi README.md - 345 git olgb - 346 git olgb --all - 347 vi README.md - 348 clear - 349 git st - 350 cat README.md - 351 clear - 352 git st - 353 git olgb -all - 354 git olgb --all - 355 git pull - 356 clear - 357 git st - 358 git pull - 359 git add README.md - 360 git st - 361 git ci -m "Merge after resolving the local and remot merge issue" - 362 git olgb --all - 363 clear - 364 git remote -v - 365 git push - 366 git olgb --all - 367 clear - 368 git co -b refactor - 369 git br - 370 git co main - 371 git br -d refactor - 372 git br - 373 git st - 374 git add all* - 375 git st - 376 git ci -m "Added all_checks.py to the repo" - 377 git olgb --al - 378 git olgb --all - 379 git push - 380 git olgb --all - 381 clear - 382 git br - 383 git br -d refactor - 384 [200~$ git st - 385 On branch main - 386 Your branch is up to date with 'origin/main'. - 387 Untracked files: - 388 (use "git add ..." to include in what will be committed) - 389 all_checks.py - 390 check_free_space.py - 391 cpu_usage.py - 392 nothing added to commit but untracked files present (use "git add" to track) - 393 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) - 394 $ git add all* - 395 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) - 396 $ git st - 397 On branch main - 398 Your branch is up to date with 'origin/main'. - 399 Changes to be committed: - 400 (use "git restore --staged ..." to unstage) - 401 new file: all_checks.py - 402 Untracked files: - 403 (use "git add ..." to include in what will be committed) - 404 check_free_space.py - 405 cpu_usage.py - 406 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) - 407 $ git ci -m "Added all_checks.py to the repo" - 408 [main 538d49e] Added all_checks.py to the repo - 409 1 file changed, 40 insertions(+) - 410 create mode 100644 all_checks.py - 411 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) - 412 $ git olgb --al - 413 fatal: unrecognized argument: --al - 414 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) - 415 $ git olgb --all - 416 * 538d49e (HEAD -> main) Added all_checks.py to the repo - 417 * 25461f1 (origin/main, origin/HEAD) Merge after resolving the local and remot merge issue - 418 || * a787477 Update README.md - 419 * | b0f25ed Added local changes to README.md - 420 |/ - 421 * 70ea584 Update README.md - 422 * 8fb2541 Add one more line to the README.md - 423 * d9a64ee Initial commit - 424 kuper@LAPTOP-H3RI3PM8 MINGW64 /C/cygwin64/home/kuper/IT_Auto/health-check (main) - 425 $ git push - 426 Enumerating objects: 4, done. - 427 Counting objects: 100% (4/4), done. - 428 Delta compression using up to 8 threads - 429 Compressing objects: 100% (3/3), done. - 430 Writing objects: 100% (3/3), 745 bytes | 372.00 KiB/s, done. - 431 Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0) - 432 To https://github.com/ernestok23/health-check.git - 433 clear - 434 git br -b refactor - 435 git co -b refactor - 436 git br - 437 ls -ltr - 438 vi all_checks.py - 439 xxxgit commit -a -m 'Create wrapper function for check_disk_full' - 440 git st - 441 git add all* - 442 git st - 443 git commit -m 'Create wrapper function for check_disk_full' - 444 git olbg --all - 445 git olgb --all - 446 clear - 447 git st - 448 git add all* - 449 git st - 450 git ci -m 'Iterate over a list of checks and messages to avoid code duplication' - 451 git olgb --all - 452 git add all* - 453 git st - 454 git ci -m 'Allow printing more than one error message' - 455 git olgb --all - 456 git push -u origin refactor - 457 git olgb --all - 458 git br main - 459 git br - 460 git diff main - 461 clear - 462 git br - 463 git co main - 464 git olgb --all -8 - 465 git br - 466 git pull - 467 git olgb --all -8 - 468 ls -ltr - 469 vi README.md - 470 git add READ* - 471 git ci -m "For a change on main to test rebase" - 472 git olgb --all -8 - 473 git ci -ammend - 474 git ci --ammend - 475 git ci --amend - 476 git olgb --all - 477 git co refactor - 478 git br - 479 git olgb --all - 480 git rebase master - 481 git rebase main - 482 git olgb --all - 483 git co main - 484 git br - 485 git olgb --all - 486 git merge refactor - 487 git olgb --all - 488 git br - 489 git push - 490 git olgb --all - 491 git br --all - 492 git push --delete origin refactor - 493 git br - refactor - 494 git br -d refactor - 495 git br --all - 496 git push - 497 CLEAR - 498 git st - 499 git add all* - 500 git st - 501 git ci -m "Add a simple network connectivity check" - 502 git olgb --all - 503 git fetch - 504 git fetch - 505 clear - 506 git olgb --all - 507 git fetch - 508 git olgb --all - 509 clear - 510 git fetch - 511 git olgb --all - 512 clear - 513 git br - 514 git br --all - 515 git rebase origin/main - 516 ls -l - 517 git st - 518 git add health_checks.py - 519 git st - 520 clear - 521 git rebase --continue - 522 git br --all - 523 git br --all - 524 git olgb --all - 525 git remote -v - 526 git push - 527 git olgb --all - 528 pwd - 529 clear - 530 git br - 531 git olgb - 532 git remote -v - 533 pwd - 534 cd .. - 535 pwd - 536 ls -l - 537 git clone https://github.com/ernestok23/rearrange.git - 538 ls -ltr - 539 cd rearrange - 540 ls -latr - 541 git olgb - 542 git remote -v - 543 git co -b add-readme - 544 git ber - 545 git br - 546 ls -ltr - 547 git add R* - 548 git st - 549 git ci -m 'Add a simple README.md file' - 550 git olgb -all - 551 git olgb - 552 git push -u origin add-readme - 553 git olgb - 554 git olgb - 555 git br --all - 556 git olgb remotes/origin/add-readme - 557 git olgb remotes/origin/main - 558 clear - 559 git config - 560 git config -l - 561 cd .. - 562 cd health-checks - 563 dir - 564 cd health-check - 565 git config -l - 566 cd ../rearrange - 567 git br - 568 git olgb --all - 569 git co main - 570 git olgb --all - 571 clear - 572 git br - 573 git br --all - 574 git remote -v - 575 git remote show origin - 576 git br - 577 git rev-list - 578 git rev-list --all - 579 git rev-list --branches - 580 git rev-list --objects - 581 git rev-list --objects --all - 582 ls -l - 583 git st - 584 git rev-list --objects -all - 585 git rev-list --objects --all - 586 git rev-list - 587 git olgb - 588 git br - 589 cd .. - 590 cd health-check - 591 git olgb - 592 cd ../rearrange - 593 history - 594 git olgb - 595 git co main - 596 git br - 597 history > the_history_till_now.txt From a76295be2b6fcaa6bffaf007dc1b7e5dab67940d Mon Sep 17 00:00:00 2001 From: ernesto Date: Sun, 13 Oct 2024 23:26:13 -0400 Subject: [PATCH 08/22] Modified tellme.sh con araca --- tellme.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tellme.sh b/tellme.sh index ef571db3..924f4119 100644 --- a/tellme.sh +++ b/tellme.sh @@ -2,4 +2,5 @@ echo $USERNAME pwd ls echo San Sefini macho +echo araca que llego Nadies From dbad123b3ac51ee35af3f836f56399fb455a9640 Mon Sep 17 00:00:00 2001 From: ernesto Date: Sun, 13 Oct 2024 23:27:22 -0400 Subject: [PATCH 09/22] Modified tellme.sh con Durazno a cuarenta en ciento --- tellme.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tellme.sh b/tellme.sh index ef571db3..c494425d 100644 --- a/tellme.sh +++ b/tellme.sh @@ -2,4 +2,5 @@ echo $USERNAME pwd ls echo San Sefini macho +echo Durazno a cuarenta el ciento From 149681124853432a589a7c1d61516a925f006e63 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 22:38:23 -0400 Subject: [PATCH 10/22] Add tell me what you see --- tellme.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tellme.sh b/tellme.sh index 83f7b628..0083d620 100644 --- a/tellme.sh +++ b/tellme.sh @@ -5,3 +5,5 @@ echo San Sefini macho echo araca que llego Nadies echo Durazno a cuarenta el ciento +tell me what you see + From 66eb1d510904ef381f6382ff22bfef8eaca3b02c Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 22:39:42 -0400 Subject: [PATCH 11/22] Add echo il descangayado mascalzone --- tellme.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tellme.sh b/tellme.sh index c494425d..8e4953b3 100644 --- a/tellme.sh +++ b/tellme.sh @@ -4,3 +4,5 @@ ls echo San Sefini macho echo Durazno a cuarenta el ciento +echo il descangayado mascalzone + From 931cfac8bd438288a756c3030eacecd1984026f3 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 22:48:41 -0400 Subject: [PATCH 12/22] Afuera llovia --- tellme.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tellme.sh b/tellme.sh index 0083d620..4a4f1056 100644 --- a/tellme.sh +++ b/tellme.sh @@ -7,3 +7,11 @@ echo Durazno a cuarenta el ciento tell me what you see +afuero llovia +y adentro ... +adentro tambien llovia + +y de pronto + toc toc toc + + From b210ea40468c92e3a17d4d16e7d9641a5be85145 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 22:50:57 -0400 Subject: [PATCH 13/22] El delicioso raviolich --- tellme.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tellme.sh b/tellme.sh index 8e4953b3..c18235aa 100644 --- a/tellme.sh +++ b/tellme.sh @@ -6,3 +6,6 @@ echo Durazno a cuarenta el ciento echo il descangayado mascalzone +nadies me va a impedir +de disfrutar el delicioso raviolich + From 290816a5ed5240001632f6c71d2aa51f466a3078 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 22:52:39 -0400 Subject: [PATCH 14/22] De no creer --- tellme.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tellme.sh b/tellme.sh index 4a4f1056..2e2a8ddd 100644 --- a/tellme.sh +++ b/tellme.sh @@ -15,3 +15,9 @@ y de pronto toc toc toc +de no creer + de no creer + +de no creer + de no creer + From 81b321cfb446cfb6ea0864fb11a7974224ab1f58 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 22:57:38 -0400 Subject: [PATCH 15/22] Con tuco y berberecho --- tellme.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tellme.sh b/tellme.sh index c18235aa..76e644e9 100644 --- a/tellme.sh +++ b/tellme.sh @@ -9,3 +9,6 @@ echo il descangayado mascalzone nadies me va a impedir de disfrutar el delicioso raviolich +con tuco y berberecho +un par de damajuana' y muemmromecho + From 3827ff03fa0e70a3ac780fd1105b679f253d45f7 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 23:14:15 -0400 Subject: [PATCH 16/22] Sale c/higienico --- tellme.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tellme.sh b/tellme.sh index 76e644e9..bb8087d3 100644 --- a/tellme.sh +++ b/tellme.sh @@ -12,3 +12,5 @@ de disfrutar el delicioso raviolich con tuco y berberecho un par de damajuana' y muemmromecho +sale con higienico + From 850963c7bd2a8a5ea4f6c031baa174318919922c Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 23:15:27 -0400 Subject: [PATCH 17/22] Para que hablamos --- tellme.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tellme.sh b/tellme.sh index 2e2a8ddd..f8bdd743 100644 --- a/tellme.sh +++ b/tellme.sh @@ -21,3 +21,6 @@ de no creer de no creer de no creer +y si es de no creer +para que estamos hablando + From fb3fefea9f5861b387641bcc8047e4fa80916538 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 23:18:59 -0400 Subject: [PATCH 18/22] Flan c/dulce --- tellme.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tellme.sh b/tellme.sh index bb8087d3..c9cac1d1 100644 --- a/tellme.sh +++ b/tellme.sh @@ -14,3 +14,5 @@ un par de damajuana' y muemmromecho sale con higienico +flan c/dulce para la mesa 2 + From 96407da43c1b95ebc884640034efb7df3ffaa36a Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 23:27:36 -0400 Subject: [PATCH 19/22] Add a Candidate fix --- tellme.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tellme.sh b/tellme.sh index fbb363f8..3cb7128c 100644 --- a/tellme.sh +++ b/tellme.sh @@ -35,3 +35,5 @@ sale con higienico flan c/dulce para la mesa 2 +add a CANDIDATE fix + From 7c5a9b86fa35f068b7b7a0ef0ccbe13cfa163532 Mon Sep 17 00:00:00 2001 From: ernesto Date: Thu, 17 Oct 2024 23:29:19 -0400 Subject: [PATCH 20/22] New development towards 0.2 --- tellme.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tellme.sh b/tellme.sh index c9cac1d1..2d8d82de 100644 --- a/tellme.sh +++ b/tellme.sh @@ -16,3 +16,5 @@ sale con higienico flan c/dulce para la mesa 2 +new developement for 0.2 + From e4f6445dc30d712414a622524b711e2ed96f2a48 Mon Sep 17 00:00:00 2001 From: ernesto Date: Sat, 26 Oct 2024 23:32:05 -0400 Subject: [PATCH 21/22] Start of 0.2 --- tellme.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tellme.sh b/tellme.sh index 2d8d82de..36c06fe4 100644 --- a/tellme.sh +++ b/tellme.sh @@ -17,4 +17,5 @@ sale con higienico flan c/dulce para la mesa 2 new developement for 0.2 +this is the start of 0.2 From 97a46b56a7a5583a265af073ca58fb89fb1b11e1 Mon Sep 17 00:00:00 2001 From: ernesto Date: Sun, 27 Oct 2024 13:07:44 -0400 Subject: [PATCH 22/22] 1st fix for 0.2 on CANDIDATE --- tellme.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tellme.sh b/tellme.sh index a6a71096..65c64aef 100644 --- a/tellme.sh +++ b/tellme.sh @@ -39,3 +39,5 @@ add a CANDIDATE fix new developement for 0.2 this is the start of 0.2 +1st fix on CANDIDATE +