-
Bug
-
Resolution: Done
-
Major
-
DO400 - Early Access
-
None
-
ROLE
-
en-US (English)
URL: https://rol.redhat.com/rol-stage/app/courses/do400-4.6/pages/ch02s06
Reporter RHNID: ctiwary@redhat.com
Section: 6 - Guided Exercise: Creating Git Branches
Language: en-US (English)||||||||
Workaround:
Description: wrong directory name in ch02s06 step 1.2 & 1.3 & 1.4
Navigate to the hello-branches folder and initialize a new repository.
[user@host DO400]$ cd hello-branches
[user@host git-branches]$ git init .
Initialized empty Git repository in ...output omitted.../DO400/hello-branches/.git/
Create the helloworld.py file with the following content:
def say_hello(name):
print(f"Hello,
!")
say_hello("world")
Run the program:
[user@host git-branches]$ python helloworld.py
Hello, world!