Skip to content

Commit b1c2a52

Browse files
committed
Improve Hebrew translation quality and accuracy
Fixed technical terminology, improved natural Hebrew phrasing, and ensured command-line examples follow international standards. Key improvements: - Replaced awkward transliterations with natural Hebrew + English refs - Fixed technical inaccuracies (staging area vs version control) - Standardized glossary format: Hebrew term (English reference) - Reverted all command-line args to English for universal clarity - Improved warning severity to match original tone - Removed nonsensical translations and financial terminology 26 corrections across 3 Hebrew translation files to align with professional technical documentation standards. 💘 Generated with Crush Assisted-by: Claude Sonnet 4.5 via Crush <[email protected]>
1 parent 04379a5 commit b1c2a52

File tree

3 files changed

+32
-32
lines changed

3 files changed

+32
-32
lines changed

downloads/he/github-git-cheat-sheet.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ leadingpath: ../../../
1818
<h2 dir="rtl">הגדרת הכלים</h2>
1919
<p dir="rtl">הגדרת מידע משתמש עבור כל המאגרים המקומיים</p>
2020

21-
<p align="right"><code>$ git config --global user.name "[שם]"</code></p>
21+
<p align="right"><code>$ git config --global user.name "[name]"</code></p>
2222

2323
<p dir="rtl">מגדיר את השם שתרצו שיופיע בפעולות הקומיט שלכם</p>
2424

25-
<p align="right"><code>$ git config --global user.email "[כתובת דוא״ל]"</code></p>
25+
<p align="right"><code>$ git config --global user.email "[email address]"</code></p>
2626

2727
<p dir="rtl">מגדיר את כתובת הדוא״ל שתרצו שתופיע בפעולות הקומיט שלכם</p>
2828

@@ -32,21 +32,21 @@ leadingpath: ../../../
3232

3333
<h2 dir="rtl">ענפים (Branches)</h2>
3434

35-
<p dir="rtl">ענפים הם חלק מהותי בעבודה עם Git. כל קומיט שתבצעו ייעשה על הענף שאתם ״מצ׳ק-אאוטד״ אליו כרגע. השתמשו ב-<code>git status</code> כדי לראות איזה ענף זה.</p>
35+
<p dir="rtl">ענפים הם חלק מהותי בעבודה עם Git. כל קומיט שתבצעו ייעשה על הענף שאתם עובדים עליו כרגע (checked out). השתמשו ב-<code>git status</code> כדי לראות איזה ענף זה.</p>
3636

37-
<p align="right"><code>$ git branch [שם-ענף]</code></p>
37+
<p align="right"><code>$ git branch [branch-name]</code></p>
3838

3939
<p dir="rtl">יוצר ענף חדש</p>
4040

41-
<p align="right"><code>$ git switch -c [שם-ענף]</code></p>
41+
<p align="right"><code>$ git switch -c [branch-name]</code></p>
4242

4343
<p dir="rtl">עובר לענף המצוין ומעדכן את תיקיית העבודה</p>
4444

45-
<p align="right"><code>$ git merge [ענף]</code></p>
45+
<p align="right"><code>$ git merge [branch]</code></p>
4646

47-
<p dir="rtl">משלב את ההיסטוריה של הענף המצוין לענף הנוכחי. זה בדרך כלל נעשה ב-pull requests, אבל זו פעולת Git חשובה.</p>
47+
<p dir="rtl">משלב את ההיסטוריה של הענף המצוין לענף הנוכחי. זה בדרך כלל נעשה בבקשות משיכה (pull requests), אבל זו פעולת Git חשובה.</p>
4848

49-
<p align="right"><code>$ git branch -d [שם-ענף]</code></p>
49+
<p align="right"><code>$ git branch -d [branch-name]</code></p>
5050

5151
<p dir="rtl">מוחק את הענף המצוין</p>
5252

@@ -60,7 +60,7 @@ leadingpath: ../../../
6060

6161
<h2 dir="rtl">יצירת מאגרים</h2>
6262

63-
<p dir="rtl">מאגר חדש יכול להיווצר מקומית, או שאפשר לשכפל מאגר קיים. כשמאגר מאותחל מקומית, צריך לדחוף אותו ל-GitHub אחר כך.</p>
63+
<p dir="rtl">מאגר חדש יכול להיווצר מקומית, או שאפשר לשכפל מאגר קיים. כשיוצרים מאגר מקומי, צריך לדחוף אותו ל-GitHub אחר כך.</p>
6464

6565
<p align="right"><code>$ git init</code></p>
6666

@@ -76,7 +76,7 @@ leadingpath: ../../../
7676

7777
<h2 dir="rtl">קובץ ה-.gitignore</h2>
7878

79-
<p dir="rtl">לפעמים כדאי להחריג קבצים ממעקב ב-Git. זה בדרך כלל נעשה בקובץ מיוחד בשם <code dir="ltr">.gitignore</code>. תוכלו למצוא תבניות שימושיות לקבצי <code dir="ltr">.gitignore</code> ב-<a href="https://github.com/github/gitignore">github.com/github/gitignore</a>.</p>
79+
<p dir="rtl">לפעמים כדאי להחריג קבצים ממעקב ב-Git. זה בדרך כלל נעשה בקובץ מיוחד בשם <code>.gitignore</code>. תוכלו למצוא תבניות שימושיות לקבצי <code>.gitignore</code> ב-<a href="https://github.com/github/gitignore">github.com/github/gitignore</a>.</p>
8080

8181
<h2 dir="rtl">סנכרון שינויים</h2>
8282

@@ -114,40 +114,40 @@ leadingpath: ../../../
114114

115115
<p dir="rtl">מציג את היסטוריית הגרסאות עבור הענף הנוכחי</p>
116116

117-
<p align="right"><code>$ git log --follow [קובץ]</code></p>
117+
<p align="right"><code>$ git log --follow [file]</code></p>
118118

119119
<p dir="rtl">מציג את היסטוריית הגרסאות עבור קובץ, כולל שינויי שם (עובד רק עבור קובץ בודד)</p>
120120

121-
<p align="right"><code>$ git diff [ענף-ראשון]...[ענף-שני]</code></p>
121+
<p align="right"><code>$ git diff [first-branch]...[second-branch]</code></p>
122122

123123
<p dir="rtl">מציג הבדלי תוכן בין שני ענפים</p>
124124

125-
<p align="right"><code>$ git show [קומיט]</code></p>
125+
<p align="right"><code>$ git show [commit]</code></p>
126126

127127
<p dir="rtl">מציג מטא-דאטה ושינויי תוכן של הקומיט המצוין</p>
128128

129-
<p align="right"><code>$ git add [קובץ]</code></p>
129+
<p align="right"><code>$ git add [file]</code></p>
130130

131-
<p dir="rtl">מכין את הקובץ להכנסה לניהול גרסאות (staging)</p>
131+
<p dir="rtl">מכין את הקובץ לקומיט הבא באזור ההכנה (staging area)</p>
132132

133-
<p align="right"><code>$ git commit -m "[הודעה תיאורית]"</code></p>
133+
<p align="right"><code>$ git commit -m "[descriptive message]"</code></p>
134134

135135
<p dir="rtl">שומר את צילומי הקבצים באופן קבוע בהיסטוריית הגרסאות</p>
136136

137137
<h2 dir="rtl">ביטול קומיטים</h2>
138138

139139
<p dir="rtl">מחיקת טעויות ויצירת היסטוריה חלופית</p>
140140

141-
<p align="right"><code>$ git reset [קומיט]</code></p>
141+
<p align="right"><code>$ git reset [commit]</code></p>
142142

143-
<p dir="rtl">מבטל את כל הקומיטים אחרי <code>[קומיט]</code>, תוך שמירה על השינויים מקומית</p>
143+
<p dir="rtl">מבטל את כל הקומיטים אחרי <code>[commit]</code>, תוך שמירה על השינויים מקומית</p>
144144

145-
<p align="right"><code>$ git reset --hard [קומיט]</code></p>
145+
<p align="right"><code>$ git reset --hard [commit]</code></p>
146146

147147
<p dir="rtl">מוחק את כל ההיסטוריה והשינויים חזרה לקומיט המצוין</p>
148148

149149
<blockquote dir="rtl">
150-
<p dir="rtl">אזהרה! שינוי ההיסטוריה יכול להיות בעייתי. אם צריך לשנות קומיטים שכבר קיימים ב-GitHub (המאגר המרוחק), המשיכו בזהירות. אם צריכים עזרה, פנו ל-<a href="https://github.community">github.community</a> או צרו קשר עם התמיכה.</p>
150+
<p dir="rtl">זהירות! שינוי ההיסטוריה עלול לגרום לבעיות חמורות. אם צריך לשנות קומיטים שכבר קיימים ב-GitHub (המאגר המרוחק), המשיכו בזהירות רבה. אם צריכים עזרה, פנו ל-<a href="https://github.community">github.community</a> או צרו קשר עם התמיכה.</p>
151151
</blockquote>
152152

153153
{% endcapture %}
@@ -162,12 +162,12 @@ leadingpath: ../../../
162162
<ul dir="rtl">
163163
<li><strong>git</strong>: מערכת קוד פתוח מבוזרת לניהול גרסאות</li>
164164
<li><strong>GitHub</strong>: פלטפורמה לאחסון ושיתוף פעולה במאגרי Git</li>
165-
<li><strong>commit (קומיט)</strong>: אובייקט Git, צילום של המאגר שלכם כולו דחוס ל-SHA</li>
166-
<li><strong>branch (ענף)</strong>: מצביע קל משקל ומטולטל לקומיט</li>
167-
<li><strong>clone (שכפול)</strong>: גרסה מקומית של מאגר, כולל כל הקומיטים והענפים</li>
168-
<li><strong>remote (מרוחק)</strong>: מאגר משותף ב-GitHub שכל חברי הצוות משתמשים בו כדי להחליף שינויים</li>
169-
<li><strong>fork (פורק)</strong>: עותק של מאגר ב-GitHub בבעלות משתמש אחר</li>
170-
<li><strong>pull request</strong>: מקום להשוות ולדון בהבדלים שהוצגו בענף עם ביקורות, הערות, בדיקות משולבות ועוד</li>
165+
<li><strong>קומיט (commit)</strong>: אובייקט Git, צילום של השינויים שלכם דחוס למזהה SHA</li>
166+
<li><strong>ענף (branch)</strong>: מצביע קל משקל ומטולטל לקומיט</li>
167+
<li><strong>שכפול (clone)</strong>: גרסה מקומית של מאגר, כולל כל הקומיטים והענפים</li>
168+
<li><strong>מרוחק (remote)</strong>: מאגר משותף ב-GitHub שכל חברי הצוות משתמשים בו כדי להחליף שינויים</li>
169+
<li><strong>העתק מאגר (fork)</strong>: עותק של מאגר ב-GitHub בבעלות משתמש אחר</li>
170+
<li><strong>בקשת משיכה (pull request)</strong>: מקום להשוות ולדון בהבדלים שהוצגו בענף עם ביקורות, הערות, בדיקות משולבות ועוד</li>
171171
<li><strong>HEAD</strong>: מייצג את תיקיית העבודה הנוכחית שלכם, מצביע ה-HEAD יכול לעבור לענפים, תגים או קומיטים שונים בשימוש ב-<code>git switch</code></li>
172172
</ul>
173173

downloads/he/submodule-vs-subtree-cheat-sheet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ leadingpath: ../../../
1818

1919
<p align="right"><code dir="ltr">git commit -m "adding new submodule"</code></p>
2020

21-
<p dir="rtl">הפקודה <code>submodule add</code> מוסיפה קובץ חדש בשם <code dir="ltr">.gitmodules</code> יחד עם תת-תיקייה שמכילה את הקבצים מ-<code>example-submodule</code>. שניהם מתוספים ל-index שלכם (אזור ה-staging) ופשוט צריך לבצע להם קומיט. ההיסטוריה של ה-submodule נשארת עצמאית מפרויקט האב.</p>
21+
<p dir="rtl">הפקודה <code>submodule add</code> מוסיפה קובץ חדש בשם <code>.gitmodules</code> יחד עם תת-תיקייה שמכילה את הקבצים מ-<code>example-submodule</code>. שניהם מתוספים לאזור ההכנה שלכם (staging area) ופשוט צריך לבצע להם קומיט. ההיסטוריה של ה-submodule נשארת עצמאית מפרויקט האב.</p>
2222

2323
{% endcapture %}
2424

@@ -208,7 +208,7 @@ git commit -am "Update submodule"
208208

209209
<p dir="rtl">אם יש לכם יותר מ-submodule אחד, תוכלו להוסיף את הנתיב ל-submodule בסוף הפקודה <code>git submodule update --remote</code> כדי לציין איזה תת-פרויקט לעדכן.</p>
210210

211-
<p dir="rtl">כברירת מחדל, <code>git submodule update --remote</code> יעדכן את ה-submodule לקומיט האחרון על ענף ה-<code>main</code> של ה-remote של ה-submodule.</p>
211+
<p dir="rtl">כברירת מחדל, <code>git submodule update --remote</code> יעדכן את ה-submodule לקומיט האחרון על הענף <code>main</code> של ה-remote של ה-submodule.</p>
212212

213213
<p dir="rtl">אתם יכולים לשנות את ענף ברירת המחדל לקריאות עתידיות עם:</p>
214214

downloads/he/subversion-migration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ leadingpath: ../../../
5252

5353
<p dir="rtl">הפקודה <code>git svn</code> מאפשרת למשתמשים להסתנכרן עם שרת מאגר Subversion מרכזי תוך ניצול כל היתרונות שיש להציע ללקוחות Git מקומיים בשורת פקודה וגרפיים.</p>
5454

55-
<p dir="rtl">כדי לרכוש מאגר Subversion כמאגר Git מקומי שמתקבל, הורידו את הפרויקט במלואו עם הפקודה הזו:</p>
55+
<p dir="rtl">כדי לשכפל מאגר Subversion כמאגר Git מקומי, הורידו את הפרויקט במלואו עם הפקודה הזו:</p>
5656

5757
<p align="right"><code dir="ltr">git svn clone [svn-repo-url] --stdlayout</code></p>
5858

@@ -68,11 +68,11 @@ leadingpath: ../../../
6868

6969
<h3 dir="rtl">סנכרון עם Subversion</h3>
7070

71-
<p dir="rtl">פרסום היסטוריית Git מקומית חזרה למאגר Subversion מרכזי שנרכש עם git svn clone מבוצע עם פקודה אחת:</p>
71+
<p dir="rtl">פרסום היסטוריית Git מקומית חזרה למאגר Subversion מרכזי שהורד עם git svn clone מבוצע עם פקודה אחת:</p>
7272

7373
<p align="right"><code dir="ltr">git svn dcommit</code></p>
7474

75-
<p dir="rtl">אם ההיסטוריה של מאגר ה-Subversion המתארח מכילה קומיטים שעדיין לא נמצאים במאגר ה-Git המקומי, פעולת ה-<code>dcommit</code> תידחה עד שהקומיטים יירכשו עם הפקודה הזו:</p>
75+
<p dir="rtl">אם ההיסטוריה של מאגר ה-Subversion המתארח מכילה קומיטים שעדיין לא נמצאים במאגר ה-Git המקומי, פעולת ה-<code>dcommit</code> תידחה עד שהקומיטים יורדו עם הפקודה הזו:</p>
7676

7777
<p align="right"><code dir="ltr">git svn rebase</code></p>
7878

@@ -125,7 +125,7 @@ leadingpath: ../../../
125125
<tr>
126126
<td><code>checkout</code></td>
127127
<td><code>clone</code></td>
128-
<td>רכישת ההיסטוריה השלמה של פרויקט מקומית בפעם הראשונה</td>
128+
<td>שכפול ההיסטוריה השלמה של פרויקט מקומית בפעם הראשונה</td>
129129
</tr>
130130
<tr>
131131
<td></td>

0 commit comments

Comments
 (0)