Skip to content

Commit e8abbce

Browse files
committed
readme mas
1 parent 0cbc5e6 commit e8abbce

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

LEARN_GITHUB.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# 🌙 Practical GitHub Guide
2+
3+
## Daily Commands You'll Actually Use
4+
5+
git checkout -b branch_name # Creates AND switches to new branch
6+
git checkout branch_name # Just switches to existing branch
7+
8+
Think of it like this:
9+
main is like the master copy of your code
10+
git checkout -b develop is like saying "make me a copy of whatever branch I'm on (main) and name it 'develop'"
11+
The -b flag means "create new branch"
12+
13+
# Someone finding your repo could do:
14+
git clone https://github.com/moondevonyt/moon-dev-ai-agents-for-trading.git
15+
git checkout -b their-feature-name
16+
17+
# You working on your repo:
18+
git checkout -b develop # Create development branch
19+
git checkout main # Switch back to main
20+
git checkout develop # Switch to develop again
21+
22+
# check which branch you're on
23+
git branch
24+
25+
26+
====
27+

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# 🤖 AI AGENTS FOR TRADING
22

3+
[![Moon Dev](moondev.png)](https://www.moondev.com/)
4+
35
**⚠️ IMPORTANT: This is an experimental project. There are NO guarantees of profitability. Trading involves substantial risk of loss.**
46

57
This project explores the potential of [artificial financial intelligence](https://www.afi.xyz) - a focused implementation of AI for trading and investing research.
@@ -76,4 +78,3 @@ I am not a licensed financial advisor or a registered broker-dealer. Content & c
7678
---
7779
*Built with love by Moon Dev - Pioneering the future of AI-powered trading*
7880

79-
[![Moon Dev](moondev.png)](https://www.moondev.com/)

ROADMAP.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,10 @@
7373
- [ ] Add installation guide
7474

7575
## 🔑 Remember
76-
- Commit often
76+
- Commit often (start w/ main and grow to dev if ever needed)
7777
- Use clear commit messages
7878
- Test before pushing
7979
- Document as you go
80-
- Keep security in mind (no API keys!)
80+
- Keep security in mind (no API keys!)
81+
- make a .gitignore to add .env to
82+
- new people = new branch

0 commit comments

Comments
 (0)