- {rename}
- {shortId}
```
- At this point, the updated code should look similar to this:
+ return (
+
+ {rename}
+ {shortId}
+ ```
+
+ At this point, the updated code should look similar to this:

-5. Save the code changes, re-start Kitematic.
+5. Save the code changes, re-start Kitematic.
- $ npm start
+ ```
+ $ npm start
+ ```
- Now, the container ID should show on the General Settings tab, along with the container name.
+ Now, the container ID should show on the General Settings tab, along with the container name.
- 
+ 
- *Note that the container ID in Kitematic matches the ID shown as output to the `docker ps` command.*
+ *Note that the container ID in Kitematic matches the ID shown as output to the `docker ps` command.*
-6. You can close the Kitematic application now, and kill the running process in the terminal via CTRL+c.
+6. You can close the Kitematic application now, and kill the running process in the terminal via CTRL+c.
-7. Stage your changes by adding them.
+7. Stage your changes by adding them.
- $ git add src/components/ContainerSettingsGeneral.react.js
+ ```
+ $ git add src/components/ContainerSettingsGeneral.react.js
+ ```
-8. Commit your code changes with a comment that explains what this fixes or closes.
+8. Commit your code changes with a comment that explains what this fixes or closes.
- $ git commit -s -m "added container ID to show on settings tab, fixes issue #1191"
+ ```
+ $ git commit -s -m "added container ID to show on settings tab, fixes issue #1191"
+ ```
(See
Coding Style in the general guidelines on
Contributing to Docker.)
## Where to go next
+
At this point, you are ready to [Review your branch and create a pull request](create_pr.md) to merge your new feature into Kitematic.